Thanks VBA NOOB, I think you're understanding me; However, I'm not sure I'm implementing the code you gave me correctly. It doesn't clear the entire column, only the topmost row... I'll tinker with your code to try and fix that. Thank you for your help!!
Here's my sub:
Public Sub clearQuantities()
Dim Answer As String
Dim MyNote As String
'Place your text here
MyNote = "Do you want to clear material quantities?"
'Display MessageBox
Answer = MsgBox(MyNote, vbQuestion + vbYesNo, "Clear Quantities?")
If Answer = vbNo Then
'Code for No button Press
MsgBox "You pressed NO!"
Else
'Code for Yes button Press
With Range("C4")
.Resize(.End(xlDown).Row - 3).SpecialCells(xlCellTypeVisible).ClearContents
End With
End If
Bookmarks