hello there,
is there a way to get the entire row from a datatable with a unique clue one item ?
here one exemple :
(suppose there are more than 3), i have the id (string) = KI023RA, how can i get the whole row informations ?
which is id = KI023RA; city = madrid; age = 48
Hi @grish you can use the filter data table acitivity
you can use the attached workflow for reference…here the searched keyword is “lodgement” Main.xaml (8.6 KB)
Use assign activity, and do some datatable functions… you can filter data as Dt_datatable.Select("id='Xxxx'")
This will get your data into a datarow array… you can loop through the array easily then…
Or else, you can use the filter data table activity that is available under datatable relates tasks to easily filter data based on your criteria
I want the same, in my case I need to extract the whole row from the data table , giving me an output as an array and then using that array , by using the index values .