VBA Code to create shortcut key for Paste Special in Excel

VBA Code to create shortcut key for Paste Special in Excel




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



Comments