Macro to clear clipboard on exit

  • Thread starter Thread starter Fan924
  • Start date Start date
F

Fan924

In a macro, I do some copying and pasting and would like to exit the
Macro with an empty clipboard. Anyone?
 
Fan924 presented the following explanation :
In a macro, I do some copying and pasting and would like to exit the
Macro with an empty clipboard. Anyone?

Try...

Application.CutCopyMode = False 'clear the clipboard
 
Back
Top