Rows which contain commas

i want to perform some task for only those rows which contain commas

Yah inside the FOR EACH ROW activity use a IF condition like this
row(“yourcolumnname”).ToString.Contains(“,”)
If true it will go to THEN part where we can keep the set of activities to be performed
Cheers @Ananya1

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