Hello,
As per below macro I can easily use pastespeacial command. But sometime I paste wrongly and want to back (ctrl+z) to see old screen and then copy to the correct range. But below macro doesn't allow to go back (when I use ctrl+z it doesn't go back). Could you please help me when I press ctrl+z then I can see the previous screen?
Sub paste()
ActiveCell.Select
Selection.PasteSpecial paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
End Sub
Thanks in advance
Bookmarks