I would like to extract all error checking results as the bot loops through each error in each sheet, then save them in a variable. I plan to have a write range activity later to write the variable in a summary table.
I dont think you can get the cell number directly…spy the element and perform get text and then we can use string manipulations or regex to extract the cell number from it
You have to click next till it is disabled…you would know that from the proprties of the next button…check the differences in the properties for next button before disabled and after disabled and use accordingly
Thank you so much. I can see the the cell address now.
However, I faced 2 issues with this approach:
I set it as a for each activity, when the bot pressed hotkeys for hidden sheet, the “error checking” box still showed the same old result for the last visible sheet. This resulted the same cell address for the last visible sheet got extracted for a few times instead of the correct information of error cells in hidden sheet because they are not visible. May I know how can I overcome this?
In one sheet, they may be a few cells with errors, hence we may be able to click NEXT a few times in the “error checking” box. Using the current approach, the bot only extracted the first error cell details per sheet. Would you mind to advice me how can I correct this too?