Sub PasteValues()
' PasteValues Macro
' Keyboard Shortcut: Ctrl+w
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
Ctrl + Shift + V
Also
ALT+E+S+V
Ctrl + Shift + V does nothing
ALT+E+S+V opens the paste special dialog box.
Sorry, seems to do nothing. But then I'm not much good with VBA. I use spreadsheets a lot at work but macros are not to be used.Hi,
You can add to your PERSONAL.XLSB file following macro
VBA Code:Sub PasteValues() ' PasteValues Macro ' Keyboard Shortcut: Ctrl+w Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues ActiveSheet.Paste Application.CutCopyMode = False End Sub
Clarification. I might have copied values from another document and want to paste values only into my spreadsheet. So assume the paste value will already be in the clipboard.I fund that "paste values" is something I use a lot.
I know I can use the ribbon or right click and select but is there a keyboard shortcut I can use or customise instead?
Sub AA()
'
' AA Macro
'
'
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub