A
Artur Pomianowski
I want to use shortcut key to copy value in spreadsheet.
The VBA code is:
Sub Paste_Value()
' shortcut key: Ctrl+q
ActiveCell.Select
Selection.PasteSpecial Paste:=xlValues
End Sub
But if I don't copy cell and I use shortcut key, the macro doesn't work.
How can I modify this macro?
Artur
The VBA code is:
Sub Paste_Value()
' shortcut key: Ctrl+q
ActiveCell.Select
Selection.PasteSpecial Paste:=xlValues
End Sub
But if I don't copy cell and I use shortcut key, the macro doesn't work.
How can I modify this macro?
Artur