Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a command button that has this code already
Private Sub CommandButton1_Click() Worksheets("Extra Earned Income Methd 1").Visible = True End Sub I would like to add an unhide of row 5 on sheet family totals. Thanks Roxy |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub CommandButton1_Click()
Worksheets("Extra Earned Income Methd 1").Visible = True Worksheets("family totals").Range("A5").EntireRow.Hidden = False End Sub Gord Dibben MS Excel MVP On Thu, 31 Jan 2008 15:49:01 -0800, Roxy wrote: I have a command button that has this code already Private Sub CommandButton1_Click() Worksheets("Extra Earned Income Methd 1").Visible = True End Sub I would like to add an unhide of row 5 on sheet family totals. Thanks Roxy |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your AWESOME! This works perffectly! Thank you so very much, have a
wonderful day!! ~Roxy "Gord Dibben" wrote: Sub CommandButton1_Click() Worksheets("Extra Earned Income Methd 1").Visible = True Worksheets("family totals").Range("A5").EntireRow.Hidden = False End Sub Gord Dibben MS Excel MVP On Thu, 31 Jan 2008 15:49:01 -0800, Roxy wrote: I have a command button that has this code already Private Sub CommandButton1_Click() Worksheets("Extra Earned Income Methd 1").Visible = True End Sub I would like to add an unhide of row 5 on sheet family totals. Thanks Roxy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I unhide the PERSONAL.XLS worksheet? | Excel Worksheet Functions | |||
How do you unhide the first three rows of a worksheet? | Excel Discussion (Misc queries) | |||
how do i unhide a worksheet in excel 2003? unhide tab don't work | Excel Discussion (Misc queries) | |||
Why can't I unhide rows 1 to 47 in a worksheet? | Excel Discussion (Misc queries) | |||
Unhide more than one worksheet at a time | Excel Discussion (Misc queries) |