G Guest Jun 18, 2007 #1 i got a macro to save as a workbook. it needs to overright an excisting one. how do i get it not to ask/say i am about to overight?
i got a macro to save as a workbook. it needs to overright an excisting one. how do i get it not to ask/say i am about to overight?
P PCLIVE Jun 18, 2007 #2 Try this: Before your save code: Application.DisplayAlerts = False After your save code: Application.DisplayAlerts = True HTH, Paul
Try this: Before your save code: Application.DisplayAlerts = False After your save code: Application.DisplayAlerts = True HTH, Paul
G Guest Jun 18, 2007 #3 Application.DisplayAlerts = False Activeworkbook.SaveAs . . . Application.DisplayAlerts = True