Question on checking for each row is empty

I use an excel to store ID, Email for some customer. I want to check the element in a row get from "For each row " activity is empty or not. For example Email is missing in ID 002. How can I do that?

1 Like

Hi
Inside the for each row loop use a If condition with expression like this
String.IsNullOrEmpty(row(“yourcolumnname”))
If true it will go to THEN part or goes to ELSE part

Cheers @Emily_Yip

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