HarryStamper
Programmer
I have an excel macro that my access app calls. All it does is delete column A from an attachment as a daily cleanup process. After it runs, it prompts with "save, no, cancel" prompt. If I am out, nothing else runs because the prompt. How can I handle this? (I go on vacation in 2 wks!!!!!!!!) Thanks
Sub Macro1()
'
'
' Macro1 Macro
' Macro recorded 6/7/2006 by erodman
'
'
Columns("A:A").Select
Selection.Delete Shift:=xlToLeft
End Sub