LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Reading an Excel excluding hidden values

Hi All,
I have a problem with reading Excel, Some values in the Excel made as hidden (as Subtotal).
In my application I need not want to read
hidden sections of that Excel.
I am using the Active X refnum "Excel._Application" but I have not found any property regarding that.Pls help me to solve this problem.
Rgds
ArunKG
Nest India Pvt Ltd
0 Kudos
Message 1 of 4
(2,723 Views)

I would search through the Excel help to find out exactly what this property might be called in the Excel Object Model. Then go to www.msdn.com and search for Excel Object Model. The first link should be a complete reference for all things ActiveX in Excel. Hope this helps!

Jarrod S.
National Instruments
0 Kudos
Message 2 of 4
(2,706 Views)
The hidden property is available on a Range object.  The best way to see if the cell is hidden is by Range.EntireRow.Hidden.  It returns either True or False.  See attached image.
Michael Munroe, CLD, CTD, MCP
Automate 1M+ VI Search, Sort and Edit operations with Property Inspector 5.1, now with a new Interactive Window Manager!
Now supports full project automation using one-click custom macros or CLI.
Message 3 of 4
(2,696 Views)
Hi,Michael

Thanks for the valuable Suggestion.
I got the desired result,

Thanks again )):
ArunKG
Rgds
ArunKG
Nest India Pvt Ltd
0 Kudos
Message 4 of 4
(2,651 Views)