Avoid Do you want to keep the Last item you copied? in Opened Word file from Excel when closing the .doc file

drom

Well-known Member
Joined
Mar 20, 2005
Messages
563
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and thanks in advance!!

I am opening a Word doc from Excel using vba (no problem)
I have to copy some paragraphs in a new word doc (no problem)
I do this in order to get a string (explain is too long (but works fast and nive, so don't worry for this)

When I have to close the opened 2 word documents I use from Excel's VBA in a macro this lines at the end of the macro:

VBA Code:
'Many Code here
    Application.DisplayAlerts = False
    Application.CutCopyMode = False

    wDoc1.Close False:                                Set wDoc1 = Nothing
    wDoc2.Close False:                                Set wDoc2 = Nothing
    wApp.Quit:                                        Set wApp = Nothing
End Sub

But Word is still asking me:
Do you want to keep the Last item you copied?
If you do, it may take a bit longer to exit.

When the code runs this sentence:
VBA Code:
wApp.Quit
How can I avoid this ?

I have to open many PDF files in word from Excel and is very disturbing

Thanks again!
 
If I put ActiveCell.Copy as follows:
VBA Code:
    Application.DisplayAlerts = False
    Application.CutCopyMode = False
    ActiveCell.Copy

The Word message dissaperars
Activecell is empty
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top