bamaisgreat
Well-known Member
- Joined
- Jan 23, 2012
- Messages
- 831
- Office Version
- 365
- Platform
- Windows
Thanks for looking at my post. I am trying to figure out how delete the text typed in cell AE30 at the end of the code below.
Code:
Sub worksheet_change(ByVal target As Range)
Set target = Range("AE30")
If target.Value = "unprotect" Then
Call up_all_sheets
End If
If target.Value = "protect" Then
Call p_all_sheets
End If
If target.Value = "add" Then
Call UserForm7.Show
End If
End Sub