Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi
I need to have a spinner control disappear until activated by another value in a cell. I was wondering weather this could be done via conditional formatting?, or that there needs to be an additional function. Thanks for help and advice THANKS |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In the worksheet module where the spin button is located, put something like...
Private Sub Worksheet_SelectionChange(ByVal Target As Range) 'Condition when SpinButton1 should be visible If Range("C2") = 5 Then SpinButton1.Visible = True Else SpinButton1.Visible = False End If End Sub This could also go in ... Private Sub Worksheet_Calculate() Private Sub Worksheet_Activate() or Private Sub Worksheet_Change(ByVal Target As Range) HTH, -- Gary Brown If this post was helpful, please click the ''Yes'' button next to ''Was this Post Helpfull to you?''. "shnim1" wrote: Hi I need to have a spinner control disappear until activated by another value in a cell. I was wondering weather this could be done via conditional formatting?, or that there needs to be an additional function. Thanks for help and advice THANKS -- shnim1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to hide blank cells in a range | Excel Discussion (Misc queries) | |||
how do i hide negative values in excel | Excel Discussion (Misc queries) | |||
Spinner Button - Excel 2000 | Excel Discussion (Misc queries) | |||
hide toolbars, menu bar, etc | Excel Discussion (Misc queries) | |||
Hide AutoShapes On Excel Worksheet | Excel Worksheet Functions |