Macro to clear clipboard on exit

F

Fan924

In a macro, I do some copying and pasting and would like to exit the
Macro with an empty clipboard. Anyone?
 
G

GS

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
 
Top