I have an scenario like if A or B or C only exists in datatable(Excel) i want to skip that datatable. Attached snapshot below
2- If there is any combination with A or B or C with different data I want to take that particular scenario and continue the process. Attached snapshot below
@Rishik_Chowdary
You can use for each row activity and If activity inside for each.
Give If condition as CurrentRow(“Name”).ToString.Equals(“A”) Or CurrentRow(“Name”).ToString.Equals(“B”) Or CurrentRow(“Name”).ToString.Equals(“C”)
you can build your set of activity in else block as how you want to proceed.
Regards
BM