reddcannon
Board Regular
- Joined
- Aug 11, 2011
- Messages
- 118
I have excel 16 and windows 10
I have a button that clears all my data I imput etc and all is fine, however it does not clear the check marks out of the check boxes.
this is what I have for my clear data button
Private Sub CommandButton1_Click()
On Error Resume Next
Range("a1:g40").Value = vbNullString
On Error GoTo 0
End Sub
I don't want to uses another button for the check marks.
I have a button that clears all my data I imput etc and all is fine, however it does not clear the check marks out of the check boxes.
this is what I have for my clear data button
Private Sub CommandButton1_Click()
On Error Resume Next
Range("a1:g40").Value = vbNullString
On Error GoTo 0
End Sub
I don't want to uses another button for the check marks.