How can i find the "greater than" value of a number in a datarow so I can filter it from a set of data

Also i am using it as a if condition

Please try this in an Assign activity:
dt.AsEnumerable().Max(Function(row) row(“colname”))
Thanks and regards.

4 Likes