Can you change the color of a check box if it's checked? I can change the color of the cell that the check box is in but I'd like to change the actual fill color IN the check box. Is this possible? If so, how do I do that?
Thanks,
RR
Can you change the color of a check box if it's checked? I can change the color of the cell that the check box is in but I'd like to change the actual fill color IN the check box. Is this possible? If so, how do I do that?
Thanks,
RR
assign a small macro to the checkbox.
![]()
Sub CHECKSTATE() With Sheet1.CheckBoxes("Check Box 1") If .Value = 1 Then .Interior.ColorIndex = 4 Else .Interior.ColorIndex = 6 End If End With End Sub
Torachan,
Mission statement; Promote the use of Tables, Outlaw the use of 'merged cells' and 'RowSource'.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks