In short, I want to perform iterative actions with data in a datatable, only if a certain value exists in one of the columns. I've set it up as follows:
For each "Current Item" in DataTable
If "Column" = "Value"
- perform action 1
- perform action 2
End
However, the flow simply skips over the the "IF" steps and ends, despite the fact that there are records in the DataTable with "Value" in the "Column" field.