
Originally Posted by
akajj13
Thanks, but I did steal some info from these type of sites :-)
I want to remove the unchecked text. Let's say I check the box and I change my mind, I want to uncheck the box and have the text removed. Yes, Sheet1. If you can help, it would finish what I'm trying to accomplish and I would be a very happy noob!
I'm trying to figure out what you want. I don't know what "remove the unchecked text" means.
This is a guess. It toggles text in column B for the same row as the checkbox.
Sub CheckBox1_Click()
Dim cBox As CheckBox
Set cBox = ActiveSheet.CheckBoxes(Application.Caller)
With Range("B" & cBox.TopLeftCell.Row)
If cBox.Value = xlOn Then
.Value = "3300-0401"
Else
.ClearContents
End If
End With
End Sub
Bookmarks