Paste Formula

R

Ross in Oz

How can I put a "Paste Formula" command on to the toolbar similar to the
"Paste Formatting" and "Paste Values"

Having to go to Past Special and select it every time is a pain.
 
G

Gord Dibben

There is no such Icon.

You would have to use a macro assigned to a button.

Sub Paste_Formulas()
Selection.PasteSpecial Paste:=xlPasteFormulas
Application.CutCopyMode = False
End Sub

Select a range and copy.

Select a destination cell then hit button to run macro.

No error-checking in macro.


Gord Dibben MS Excel MVP
 

Ask a Question

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.

Ask a Question

Top