F
Francis Hookham
Deleting a module
Having Saved As... (thanks to Bernard Rey and J M McGimpsey) can ŒUserForm1¹
and ŒModule1¹ be deleted so the file can be sent as a straight forward sheet
without potentially suspicious macros?
The line
ActiveSheet.Shapes("RunButton").Cut
removes a button which calls the UserForm but is it possible to go further?
I guess not but it would be great if possible
Sub SaveAs()
ActiveWorkbook.SaveAs Filename:=Range("C4") & " " & Range("A3") & _
" " & Format(Date, "d mmm yy")
ActiveSheet.Shapes("RunButton").Cut
End Sub
Francis Hookham
Having Saved As... (thanks to Bernard Rey and J M McGimpsey) can ŒUserForm1¹
and ŒModule1¹ be deleted so the file can be sent as a straight forward sheet
without potentially suspicious macros?
The line
ActiveSheet.Shapes("RunButton").Cut
removes a button which calls the UserForm but is it possible to go further?
I guess not but it would be great if possible
Sub SaveAs()
ActiveWorkbook.SaveAs Filename:=Range("C4") & " " & Range("A3") & _
" " & Format(Date, "d mmm yy")
ActiveSheet.Shapes("RunButton").Cut
End Sub
Francis Hookham