Min maks


This is how I found the min and max from the data, but I also want to get other information about them
other column name and content

Hi,

Perhaps you should use OrderBy and First() or Last(), as the following. Can you try this?

details.AsEnumerable.OrderBy(Function(row) CInt(row("targetColumn"))).First()

Regards,

hi, I suggest you pass this expression to a Data Row variable using the Assign activity.

With that you can now call the values from other columns or pass on also with an Assign acitivity:

For column 1: dr_DataRowVariable(0).ToString
For column 2: dr_DataRowVariable(1).ToString
and so on…