Closed
Solved
How to check if Excel cell is hidden?
I want to check if a value appears on an Excel file, but I have to ignore cells that are on a hidden row/column.
Do any of you know how to check if a cell is hidden? I've been searching if it's possible checking that usign both excelConnector and MicrosoftExcel components but find nothing.
Thanks in advance.
***Edited by Moderator Marije to add Capability tags***
***Edited by Moderator: Pooja Gadige to add capability tag***
To see attachments, please log in.
***Edited by Moderator: Pooja Gadige to add capability tag***
@emonfort I don't believe you can hide a cell in Excel. Your requirement though is to ignore hidden columns. The trick here is to get a range object for a particular cell in that column and then collect a range from that range by accessing EntireColumn property (which is a range referring to the entire column). If you are using the MicrosoftExcel connector, you can do the following;