View Single Post
  #2   Report Post  
Paul B
 
Posts: n/a
Default

Jamie, to keep excel from showing alerts when you run a macro use something
like this

Application.DisplayAlerts = False
'Your Code
Application.DisplayAlerts = True

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"Jamie" wrote in message
...
Every time I close an excel document, it asks me if I want to save changes
even when I have made no changes at all. How do I stop it from asking me

to
save changes? This really screws up my macros when I'm copying from other
sheets as it'll ask after every sheet for me to save.