Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All,
I'm using Paste Special in a Macro to copy the format and column widths etc and overwrite some existing data in the destination cells. Selection.PasteSpecial Paste:=xlPasteColumnWidths, Operation:=xlNone, _ SkipBlanks:=False, Transpose:=False I receive an Information Alert message: "Do you want to replace the contents of the destination cells? Yes / No" How can I reply "Yes" to the Alert Message within the Macro to prevent user intervention? Thanks Sam -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200604/1 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sam,
You can't reply to it, but you can use the following to prevent the message from appearing... Application.DisplayAlerts = False Set this back to True before exiting the Sub. -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "Sam via OfficeKB.com" <u4102@uwe wrote in message news:5ee08e4c8ec2e@uwe... Hi All, I'm using Paste Special in a Macro to copy the format and column widths etc and overwrite some existing data in the destination cells. Selection.PasteSpecial Paste:=xlPasteColumnWidths, Operation:=xlNone, _ SkipBlanks:=False, Transpose:=False I receive an Information Alert message: "Do you want to replace the contents of the destination cells? Yes / No" How can I reply "Yes" to the Alert Message within the Macro to prevent user intervention? Thanks Sam |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Jim,
Thank you very much for your assistance: that worked Great! Cheers Sam Jim Cone wrote: Sam, You can't reply to it, but you can use the following to prevent the message from appearing... Application.DisplayAlerts = False Set this back to True before exiting the Sub. -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200604/1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
"Do you want to replace the contents of the destination cells?" | Excel Discussion (Misc queries) | |||
Do you want to replace the destination cells? | Excel Discussion (Misc queries) | |||
Paste contents, but keep formula of destination | Excel Discussion (Misc queries) | |||
Macro causes "Do you want to replace the contents of the destination cells" | Excel Programming | |||
Replace destination cells | Excel Programming |