Hot to find empty cell in data table

Hi All,

how I could find empty cell in my data table. Below example table
Example.xlsx (8.6 KB)

Hi @Krzysztof :wave:

You can always use the column names to check if they are empty using String.IsNullOrEmpty() and if the column name is dynamic then, you can iterate through each row, check the same condition, and maybe get its index as required.

1 Like

U can use the condition stringvariable.Equals(“”)

To check whether cell is empty or not

1 Like

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