One way is to create a macro and then use a keyboard shortcut to run that macro:
Put something like this in your personal.xls workbook (so it's available all the
time):
Option Explicit
Sub myPasteSpecialFormulas()
On Error Resume Next
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
If Err.Number <> 0 Then
MsgBox "Paste|special|formulas failed"
Err.Clear
End If
End Sub
Then Tools|options|macro
select mypastespecilformulas
click Options
assign your shortcut key
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.