davesplace80
New Member
- Joined
- Jun 27, 2005
- Messages
- 6
This one should be pretty simple.
I have the following code:
Private Sub Wilmington_Click()
Sheets("Approval Form").Range("A33").Value = "Wilm"
End Sub
But I want something more like this
Private Sub Wilmington_Click()
If checked
Sheets("Approval Form").Range("A33").Value = "Wilm"
else
Sheets("Approval Form").Range("A33").Value = ""
End Sub
I have the following code:
Private Sub Wilmington_Click()
Sheets("Approval Form").Range("A33").Value = "Wilm"
End Sub
But I want something more like this
Private Sub Wilmington_Click()
If checked
Sheets("Approval Form").Range("A33").Value = "Wilm"
else
Sheets("Approval Form").Range("A33").Value = ""
End Sub