Clearing specific checkboxes

paster

New Member
Joined
Jan 31, 2005
Messages
2
Ok, first post and relative beginner. I am in the process of setting up a schedule type worksheet. In cell A1 I would enter the task. In cell A2 I will have three checkboxes related to this task, with each department checking off their completed portion for the said task. Once the final checkbox is checked off, the job is considered complete.

Now, if the task in cell A1 is cleared, is it possible to have this action also clear all the related checkboxes in A2? If this is not possible is it possible to have a form button in cell A2 that would clear the checkboxes in that cell only? I do not want to clear all the checkboxes on the page as there will be other tasks and checkboxes.

Hope I am clear enough and thank you for any help anyone can provide.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Something like this on the worksheet:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" And Target = "" Then

ActiveSheet.OLEObjects("CheckBox1").Object.Value = 0

End If

End Sub
 
Upvote 0
Something like this on the worksheet:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" And Target = "" Then

ActiveSheet.OLEObjects("CheckBox1").Object.Value = 0

End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,202,914
Messages
6,052,532
Members
444,590
Latest member
GCLee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top