Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
All
Thank you all for your suggestions What I did in the end to get it to work was in a seperate cells was: i.e. A2 =Today() A3 01/11/2006 in A4 if(A2=A3,1,0) cell A1= A4 Private Sub Workbook_Open() If Sheets("Menu").Range("A1") = "1" Then Sheets(Array("Health Dec", "Menu", "UK", "EU", "XU", "WW", "AT EU", "AT WW", "Summary")).Select Sheets("Health Dec").Activate ActiveWindow.SelectedSheets.Visible = False Sheets("Contact").Visible = True Sheets("Long stay").Select ActiveWindow.SelectedSheets.Visible = False End If End Sub Many thanks Paul "Dave Peterson" wrote in message ... I like: If Sheets("Menu").Range("A1").Value = dateserial(2006,1,11) Then (01/11/2006 meant January 11th, 2006???) PJ wrote: All Using formula to check date in a cell when opening workbook. Nb: A1 = today() if prior to 01/11/2006 ok no changes if equal to or after the 01/11/2006 then not ok and hide all sheets bar one called contact. It only works if exact match i.e. if date on sheet is 01/11/2006 If Sheets("Menu").Range("A1") = "01/11/2006" Then hide sheets and reveal contact The equal sign = being the key When I try = is grater than or equal to regardless of date (I.e. 31/10/2006 ) still hides sheets!!! HELP!!! Private Sub Workbook_Open() If Sheets("Menu").Range("A1") = "01/11/2006" Then Sheets(Array("Health Dec", "Menu", "UK", "EU", "XU", "WW", "AT EU", "AT WW", "Summary") _ ).Select Sheets("Health Dec").Activate ActiveWindow.SelectedSheets.Visible = False Sheets("Contact").Visible = True Sheets("Long stay").Select ActiveWindow.SelectedSheets.Visible = False End If End Sub -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
have some problem with database | Excel Discussion (Misc queries) | |||
Urgent Help Required on Excel Macro Problem | Excel Discussion (Misc queries) | |||
Problem With Reference Update | Excel Worksheet Functions | |||
Copy an Drag cell Formula Problem | Excel Discussion (Misc queries) | |||
Freeze Pane problem in shared workbooks | Excel Discussion (Misc queries) |