I need a macro to delete information in cells (A2:G2), and change the value
of a check box to false. The check box is linked to cell (E2) and the value
should change to false. The check box was created useing the forms tool box.
Thanks!
Jim Thomlinson - 31 Jan 2008 21:15 GMT
Sub whatever
Range("A2:G2").ClearContents
end sub

Signature
HTH...
Jim Thomlinson
> I need a macro to delete information in cells (A2:G2), and change the value
> of a check box to false. The check box is linked to cell (E2) and the value
> should change to false. The check box was created useing the forms tool box.
> Thanks!
FSt1 - 31 Jan 2008 21:24 GMT
hi
just to add to jim's responce...
Sub whatever
Range("A2:G2").ClearContents
Range("E2").value ="False"
end sub
regards
FSt1
> I need a macro to delete information in cells (A2:G2), and change the value
> of a check box to false. The check box is linked to cell (E2) and the value
> should change to false. The check box was created useing the forms tool box.
> Thanks!