View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.newusers
Ben Ben is offline
external usenet poster
 
Posts: 509
Default Paste Special Macro - can't undo

Hi there,

I have recorded a very simple macro to perfom the 'Paste Special' function
but noticed that I can't undo my last action using this macro.

Can anyone help?

Macro:
Sub PasteVal()
Selection.PasteSpecial Paste:=xlValues
End Sub