D
dok112
I was provided with this as a way to tell my userform to print only th
selected checkboxes. Is there a way to also tell it to delete th
unchecked checkboxes from the worksheet?
Dim ctrl As Control
Dim chkbx As MSForms.CheckBox
For Each ctrl In Me.Controls
If TypeOf ctrl Is MSForms.CheckBox Then
Set chkbx = ctrl
If chkbx Then
Worksheets(chkbx.Caption).PrintOut
End If
End If
Nex
selected checkboxes. Is there a way to also tell it to delete th
unchecked checkboxes from the worksheet?
Dim ctrl As Control
Dim chkbx As MSForms.CheckBox
For Each ctrl In Me.Controls
If TypeOf ctrl Is MSForms.CheckBox Then
Set chkbx = ctrl
If chkbx Then
Worksheets(chkbx.Caption).PrintOut
End If
End If
Nex