Total novice here...
I have a macro (hooked to a button) that clears the Worksheet once the user is done with data entry. What I'd like to do is have the macro initiate a "save as" routine and use the contents of a cell to name the file prior to running the clear routine. Any help on this would be greatly appreciated. Tom
Sub SAV()
'
' SAV Macro
' Saves File and Clears Worksheet
'
' Keyboard Shortcut: Ctrl+s
'
Range("C20").Select
Selection.ClearContents
Range("C19").Select
Selection.ClearContents
Range("C18").Select
Selection.ClearContents
Range("C17").Select
Selection.ClearContents
Range("B17").Select
Selection.ClearContents
Range("E13").Select
Selection.ClearContents
Range("E12").Select
Selection.ClearContents
Range("E11").Select
Selection.ClearContents
Range("C12").Select
Selection.ClearContents
End Sub
Bookmarks