Hello Everyone.
I want to be able to check if a row is present in a datatable and, if it isn't, do something.
I use IF MyDataTable[1][0] <> 'Null' (I also tried the Is Empty option), but it doesn't seem to work and gives an 'Index is out of range' error if the row doesn't exist and the flow stops.
How can I check if data exists in MyDataTable[1][0] exists or not and then do something?
Thank you for any help.