A dataTable = [1,2,3,4,5,6,7,8,9,10] 이라고 한다면
A datatable의 index 1~5까지의 [1,2,3,4,5] 만 추출 하고 싶은데 어떻게 하면 될까요?
A dataTable = [1,2,3,4,5,6,7,8,9,10] 이라고 한다면
A datatable의 index 1~5까지의 [1,2,3,4,5] 만 추출 하고 싶은데 어떻게 하면 될까요?
do the 1,2,3,4 etc means the number of rows in a datatable?
then please find the below method
you can use linq query like
use it inside an assign activity
Dt2=Dt1.AsEnumerable().Take(5).CopyToDataTable()
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.