Hellom I’m trying to get my else if statement invoke a new workflow if it finds a certain row in an excel file blank. I know the cell is blank and I’m pretty sure my file references correct, and the bot runs to completion without errors, but it just keeps seeing the error is false?
Yes, I keep trying many variations of this equation, yet I keep getting this error that I don’t understand. The only object here to be declared is Current Row, which I did set in “For Each Current Row”. Do I have to set the object again in the if statement?
Everything after this are write cell functions which I’m pretty sure are working right. imported them from a previous successful file
Thank you for looking at this for me! @vrdabberu
I think I got the issue here. We can’t directly read the cell value as CurrentRow.Item(""BillDate").ToString
What’s other option? Here we will have to use Get Cell Value and store it into Object type variable. Once we have the value we are ready to compare it. Like this.
Not String.IsNullOrEmpty(GetCellValueOutputVariable)