Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I want a macro which should run a procedure if a sheet is hidden(not visiable). (My workbook is password protected) I want a code which will identify the sheet is hidden or not. Here is my code but is is not working. If Sheets("Letter Audit Sheet").Hidden = True Then Activecell.value=1520 Exit Sub End if Please help |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Try this If Sheets("Letter Audit Sheet").Visible = True Then ActiveCell.Value = 1520 Exit Sub End If Mike "Heera" wrote: Hi, I want a macro which should run a procedure if a sheet is hidden(not visiable). (My workbook is password protected) I want a code which will identify the sheet is hidden or not. Here is my code but is is not working. If Sheets("Letter Audit Sheet").Hidden = True Then Activecell.value=1520 Exit Sub End if Please help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hey it worked out....
thanks for your support. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hidden sheets | Excel Discussion (Misc queries) | |||
Hidden Sheets | Excel Worksheet Functions | |||
"With Sheets" Issue - macro on one sheet to affect hidden rows on other sheets | Excel Programming | |||
Hidden sheets | Excel Programming | |||
referencing hidden sheets | Excel Programming |