toggle button text colour

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is it possible to have toggle button text colour grayed out if cell value is
false and text colour black if cell value is true?
 
Assuming you refer to a toggle button from the Controls toolbox, and also
assuming what you want to do is disable the button: yes.
Worksheets("SheetName").ToggleButton1.Enabled = Range("CellAddress").Value
 
You have another response to your post in .misc

John said:
is it possible to have toggle button text colour grayed out if cell value is
false and text colour black if cell value is true?
 
Back
Top