how do i add the first and last row in the data
I read the mail
I searched the data in the mail on the web and saved it in a data
I sorted my data
now i want to put the first row and last row in the data to Queue
Hi,
On your Collections in Add Queue Item activity. it should be: dtSorted.Rows(0).Item(“kod”).ToString and not dtDataTable.Rows(0).Item(“kod”).ToString
dtSorted.Rows(0).Item(“fiyat”).ToString and not dtDataTable.Rows(0).Item(“fiyat”).ToString
Here’s the updated code:
SortDataTable.xaml (10.0 KB)
@Yurdanur_Yusuf
DataRow->YourDatatableVar.AsEnumeration.Last()
DataRow->YourDatatableVar.AsEnumeration.First()
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.