I have a task with an excel file in a specific column that filled with number. I am able to create a flow that for each row in that column, robot do some tasks and after it finished it will replace the value with blank (“”)
Please note that sometimes the value will be left blank or it will still has value like this
My question: What is the command to enable the robot to determine whether the column has no data? because when i try to count the row on the first picture, it returns 8 row as it treated the blank cell as an actual row so that i couldnt use db is nothing or null.
from what I understand, its not what i seek. I want to make the robot determine if whole row on datatable is just empty or null or not (preferably in one go), and then continue the flow based on the result. If I run for each and if, it will only determine row per row.
Thank you for the answer. it does help me give the output of 8 true according to the case above. however, could you please give me insight about what is the best way to make the robot recognize that the scan result is all true?
Replace dt1 with your datatable, and “YourColumn” with the name of your column (keep the double quotes though). This will return an integer that is the total count of all the rows in your datatable that contain values. If it returns 0, that means no rows contain data for that specific column