If activite

image
how do i add the first and last row in the data

Can you give us more detail @Yurdanur_Yusuf

What First? What Last?

Regards
Gokul

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 @Yurdanur_Yusuf , I answered this on your previous post:

i looked at this
Send the first line of build data to Queue twice

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.