Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, I need a line of code that means this sudo code: if 'cell is not hidden' then end if thx a lo -- kanuva ----------------------------------------------------------------------- kanuvas's Profile: http://www.excelforum.com/member.php...fo&userid=2791 View this thread: http://www.excelforum.com/showthread.php?threadid=48484 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim cell as Range
set cell = Range("B9") if cell.EntireRow.Hidden = False then End if if you mean the cell is in a row that is not hidden. for a column, change EntireColumn.Hidden = False if you mean the formula is hidden under format =cells, protection tab if cell.formulaHidden = False then end if -- Regards, Tom Ogilvy "kanuvas" wrote in message ... Hi, I need a line of code that means this sudo code: if 'cell is not hidden' then end if thx a lot -- kanuvas ------------------------------------------------------------------------ kanuvas's Profile: http://www.excelforum.com/member.php...o&userid=27911 View this thread: http://www.excelforum.com/showthread...hreadid=484849 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try something like the following:
If Range("B2").EntireRow.Hidden = True Then MsgBox "Hidden" Else MsgBox "Not hidden" End If ' or If Range("B2").EntireColumn.Hidden = True Then MsgBox "Hidden" Else MsgBox "Not hidden" End If -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "kanuvas" wrote in message ... Hi, I need a line of code that means this sudo code: if 'cell is not hidden' then end if thx a lot -- kanuvas ------------------------------------------------------------------------ kanuvas's Profile: http://www.excelforum.com/member.php...o&userid=27911 View this thread: http://www.excelforum.com/showthread...hreadid=484849 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hidden Column A Problem | Excel Discussion (Misc queries) | |||
Problem - hidden cell names in worksheet | Excel Worksheet Functions | |||
Hidden sheet problem | Excel Worksheet Functions | |||
Problem with Hidden Worksheet | Excel Programming | |||
Problem cuz of Hidden sheet | Excel Programming |