How can i compare integer with function

i have an integer in a column which i have to compare with a value it is also an integer
how can i compare it?

If MyDt is the datatable, Row is a row in the datatable when iterating in a For Each Row loop, Col is the name of the column containing the data in the datatable to compare, and MyInt is the integer you’re comparing, put the statement below in an If activity condition:

CInt(Row(Col)) = MyInt.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.