How to enable flow to work if there are missing values in excel column. Using community edition here

I will need to type the class number into my weblogic via Type Into function. Example, student A will have 3 classes, but student B only have 2 classes. The flow continues till student D and it stopped there, prompting error.

Would like advise on how to continue the flow. Thanks!

@Noobuser1,

What error do you get?
To avoid error, I would suggest proactive approach like check if any value available in the column or not and if the value is found then only type it.

@Noobuser1

Welcome to the community

you can use if condition with String.IsNullOrEmpty(currentrow("ColumnName").ToString)

this will go to then only when there is a value and type into can be placed there

cheers

If you’re getting an error on the Empty column then You can use if activity and use this condtion as String.IsNullOrEmpty(currentrow(“ColumnName”).ToString)
(Change ColumnName with your column name) for the columns which has empty values and continue with the further automation.

If this is needful then mark it as SOLUTION
Happy Automation