J
jlarkin
I have a simple spreadsheet that I am working on.
I have a series of checkboxes, and when you click it, it 'highlights
or 'lights up' the cells.
Range("C54:F54").Select
Range("F54").Activate
Selection.Interior.ColorIndex = 36
ActiveSheet.CheckBox26.BackColor = &H80FFFF
Range("A54").Select
Simple question; Is there a way to have it so when the checkbox i
UNCLICKED, ie, value = false, that it becomes no longer highlighted
I've tried
if activesheet.Checkbox26.Value = False then
Range("C54:F54").Select
Range("F54").Activate
Selection.Interior.ColorIndex = 36
ActiveSheet.CheckBox26.BackColor = &H80FFFF
end if
or something along those lines in the 'declarations' section... but i
did not work. My Programming skills are kinda weak, so any help woul
be AWESOME.
Thanks,
JLarkin
I have a series of checkboxes, and when you click it, it 'highlights
or 'lights up' the cells.
Range("C54:F54").Select
Range("F54").Activate
Selection.Interior.ColorIndex = 36
ActiveSheet.CheckBox26.BackColor = &H80FFFF
Range("A54").Select
Simple question; Is there a way to have it so when the checkbox i
UNCLICKED, ie, value = false, that it becomes no longer highlighted
I've tried
if activesheet.Checkbox26.Value = False then
Range("C54:F54").Select
Range("F54").Activate
Selection.Interior.ColorIndex = 36
ActiveSheet.CheckBox26.BackColor = &H80FFFF
end if
or something along those lines in the 'declarations' section... but i
did not work. My Programming skills are kinda weak, so any help woul
be AWESOME.
Thanks,
JLarkin