Is there a Macro to enable a check box based on the content of a c
What changes the amount - someone editing the cell with the amount?
right click on the sheet tab and select view code.
Private Sub Worksheet_Change(ByVal Target As Range)
if Target.Address = "$B$9" then
If Target.Value 0 then
me.checkbox1.Value = True
else
me.checkbox1.Value = False
end if
End if
end sub
--
Regards,
Tom Ogilvy
"Nausett" wrote:
I want to be able to have a check appear in the box if I have an amount 0.
|