I am trying to develop code where Bot will read data in Excel application and insert data in other applications. Here I encountered with two issues.
Getting error message in Excel application scope " one or more children have validation errors or warnings.
My excel sheet has blank values, my Bot should skip the Null or blank values and should move further to complete the Loop. Please suggest how to achieve this.
row.Item(“ColumnName”).ToString - will throw null reference exception if cell is empty.
Better approach here use
string.IsNullOrEmpty(Convert.ToString(row(“ColumnName”)) - because it’s working for null values.
or something with guard clause like this
( row(“ColumnName”) Is Not Nothing AndAlso row(“ColumnName”).ToString <> condition)
Okay, good advice. I think it might come from the read activities automatically detecting the type of the column for the data table. Maybe when it sets a table as Boolean and encounters an empty cell instead of True or False it gets a Null.
Actually I was wrong. I’m not able to use convert.ToString() for GenericValue variable only option it guard clause check. See example
example.xlsx just empty excel file with Sheet1.
I am trying with syntax - Colomn name variable.ToString.Length=0 in if condition.
But it seems bot not going to second line in Excel sheet. Please advise.
Bot able to read one line and not going further.
My requirement is whenever there is Blank or Null , it should move to next cell, read and write in Applications.