Datatable 에서 특정 범위의 datatable만 추출하고 싶습니다

A dataTable = [1,2,3,4,5,6,7,8,9,10] 이라고 한다면

A datatable의 index 1~5까지의 [1,2,3,4,5] 만 추출 하고 싶은데 어떻게 하면 될까요?

안녕

아래 첨부파일을 확인해주세요

Sample .xaml (10.9 KB)

문안 인사,
다누쉬

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()

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.