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!
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.
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