check box to indicate "no work required"

  • Thread starter Thread starter jeagly167
  • Start date Start date
J

jeagly167

I have an excel workbook with two worksheets, a coversheet with check boxes
an action items tab. I would like, if the box is checked on the coversheet
tab to display the "no work required" in cell F4 on action items tab.

Thanks!
 
Put this into the CoverSheet module
Private Sub CheckBox1_Change()
If CheckBox1.Value = True Then
Worksheets("ActionItems").Range("F4").Value = "NO"
Else
Worksheets("ActionItems").Range("F4").Value = ""
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top