Is there a way in UiPath of checking whether a specific cell has no value in it?
I’ve looked other postings but haven’t found a solution yet.
Please try with the attached.
Sample Columns.xlsx (10.5 KB) Main.xaml (10.6 KB)
Is there a way in UiPath of checking whether a specific cell has no value in it?
I’ve looked other postings but haven’t found a solution yet.
Please try with the attached.
Sample Columns.xlsx (10.5 KB) Main.xaml (10.6 KB)
Hi @Daun
You can simplify your workflow.
Use For Each Row instead since you are working with data tables.
Then to check if a cell is empty, just use String.IsNullOrEmpty(CellValue.ToString)
in the condition
Kindly check the revised xaml file that I sent
no worries
i have just made few changes in your workflow in the condition part and inside ELSE part of the if condition
you were almost done
hope this would help you
kindly try this and let know for any queries or clarification
daun.zip (19.4 KB)
Cheers @Daun
String.IsNullOrEmpty(CellValue) worked instead of
String.IsNullOrEmpty(CellValue.ToString)
Strange that we have to put integer not String within the paranthesis even though the method name is String.IsNullOrEmpty.
@Jan_Brian_Despi @Palaniyappan
Thank you!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.