Is there a keyboard shortcut for paste special values?

cgheller

New Member
Joined
Apr 24, 2003
Messages
1
Looking for a keyboard shortcut for Paste Special - Values. I use this all the time.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
I put this in a module and ust CTRL Q to activate it.
This one just pastes the values with out the formatting or any formulas that may have been in the origin cell.

'Hope it helps. CODE FOLLOWS::

Public Sub PstSpcl()
' Keyboard Shortcut: Ctrl+q
On Error GoTo ErrorHandler

Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False

Exit Sub
ErrorHandler:
MsgBox (Err.Description)
Resume Next
End Sub


'CODE ENDS


Yours in EXCELent Frustration

KniteMare
 
Upvote 0
If you're just looking for a qucik way to paste values once they are copied to the clipboard, simply customize your toolbar and drag the "paste values" icon up onto the active toolbar.

Hope this helps.
 
Upvote 0
There was a cool add-in released by ExcelCampus called PasteBuddy. It let's you create a custom shortcut key for any pasting combination (and allows you to undo too!). Similar to what Nevillestoke was recommending, I personally have Paste Values in the first position of my QAT bar and can use the shortcut key Alt+1 to initiate it.
 
Upvote 0

Forum statistics

Threads
1,213,551
Messages
6,114,273
Members
448,559
Latest member
MrPJ_Harper

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top