Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
jdc jdc is offline
external usenet poster
 
Posts: 5
Default Paste Formula Customized Command

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default Paste Formula Customized Command

Excel 2007 has the Paste Special|Formulas option available to add it to the
Quick Access Toolbar.

I think it is there in 2003 also. If it is not there then you can record (or
write) a macro and assign it to a button on the toolbar...

"JDC" wrote:

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?

  #3   Report Post  
Posted to microsoft.public.excel.misc
jdc jdc is offline
external usenet poster
 
Posts: 5
Default Paste Formula Customized Command

I am using Excel 2003 and that option is not available. Recording a macro
for this function and assigning it to a button is over my head. Is there a
simple set of instructions that can be provided to create one?

"Sheeloo" wrote:

Excel 2007 has the Paste Special|Formulas option available to add it to the
Quick Access Toolbar.

I think it is there in 2003 also. If it is not there then you can record (or
write) a macro and assign it to a button on the toolbar...

"JDC" wrote:

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default Paste Formula Customized Command

See http://www.rondebruin.nl/personal.htm for instructions. Instructions are
simple but the concept takes a little time...

Here is the macro to use
Sub pasteSpcial_Formulas()
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
End Sub

Another way is to go to
Copy a range of formula you want to copy
Click on the destination Cell (single cell)
Tools-Macros-Record a macro
Choose Personal Workbook in the 'Store macro in...' option
Give the macro a name or live with the default
Do your paste special
Stop recording

Then create a button, assign the macro recorded above to the button.

It seems a lot but believe me it is worth the effort and it will save you
hours in future...
"JDC" wrote:

I am using Excel 2003 and that option is not available. Recording a macro
for this function and assigning it to a button is over my head. Is there a
simple set of instructions that can be provided to create one?

"Sheeloo" wrote:

Excel 2007 has the Paste Special|Formulas option available to add it to the
Quick Access Toolbar.

I think it is there in 2003 also. If it is not there then you can record (or
write) a macro and assign it to a button on the toolbar...

"JDC" wrote:

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?

  #5   Report Post  
Posted to microsoft.public.excel.misc
Rob Rob is offline
external usenet poster
 
Posts: 718
Default Paste Formula Customized Command

This works only if you have data in the paste buffer, but will return an
error when paste buffer is empty.

Is it possible to dim the button if paste buffer is empty (just like the
other standard paste button in excel)?

regards

rob

"Sheeloo" wrote:

See http://www.rondebruin.nl/personal.htm for instructions. Instructions are
simple but the concept takes a little time...

Here is the macro to use
Sub pasteSpcial_Formulas()
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
End Sub

Another way is to go to
Copy a range of formula you want to copy
Click on the destination Cell (single cell)
Tools-Macros-Record a macro
Choose Personal Workbook in the 'Store macro in...' option
Give the macro a name or live with the default
Do your paste special
Stop recording

Then create a button, assign the macro recorded above to the button.

It seems a lot but believe me it is worth the effort and it will save you
hours in future...
"JDC" wrote:

I am using Excel 2003 and that option is not available. Recording a macro
for this function and assigning it to a button is over my head. Is there a
simple set of instructions that can be provided to create one?

"Sheeloo" wrote:

Excel 2007 has the Paste Special|Formulas option available to add it to the
Quick Access Toolbar.

I think it is there in 2003 also. If it is not there then you can record (or
write) a macro and assign it to a button on the toolbar...

"JDC" wrote:

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default Paste Formula Customized Command

I believe it is possible however I have not done it myself.

You can add a message in case of ERROR like in the macro below

Sub pasteSpcial_Formulas()
On Error GoTo errormessage
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Exit Sub
errormessage:
MsgBox "There is nothing to paste!"
End Sub


"rob" wrote:

This works only if you have data in the paste buffer, but will return an
error when paste buffer is empty.

Is it possible to dim the button if paste buffer is empty (just like the
other standard paste button in excel)?

regards

rob

"Sheeloo" wrote:

See http://www.rondebruin.nl/personal.htm for instructions. Instructions are
simple but the concept takes a little time...

Here is the macro to use
Sub pasteSpcial_Formulas()
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
End Sub

Another way is to go to
Copy a range of formula you want to copy
Click on the destination Cell (single cell)
Tools-Macros-Record a macro
Choose Personal Workbook in the 'Store macro in...' option
Give the macro a name or live with the default
Do your paste special
Stop recording

Then create a button, assign the macro recorded above to the button.

It seems a lot but believe me it is worth the effort and it will save you
hours in future...
"JDC" wrote:

I am using Excel 2003 and that option is not available. Recording a macro
for this function and assigning it to a button is over my head. Is there a
simple set of instructions that can be provided to create one?

"Sheeloo" wrote:

Excel 2007 has the Paste Special|Formulas option available to add it to the
Quick Access Toolbar.

I think it is there in 2003 also. If it is not there then you can record (or
write) a macro and assign it to a button on the toolbar...

"JDC" wrote:

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default Paste Formula Customized Command

hi
in xl03, clicikng the paste special icon produces a pop up with a number of
paste options. paste formula only is one of them.

Regars
FSt1

"JDC" wrote:

Excel allows the customization of toolbar commands for paste values, paste
special, paste formatting, and paste as hyperlink. The only option it does
not seem to have is paste formula.

Is there a way to create a customized toolbar command with just the paste
formula option?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Customized Formula Learning Excel Excel Discussion (Misc queries) 7 February 17th 08 10:51 PM
Paste and Paste Special command are not enabled in Excel mcalder219 Excel Worksheet Functions 0 April 26th 06 06:57 PM
paste command not work in 'comment' CoolKerala Excel Discussion (Misc queries) 2 June 4th 05 12:44 PM
How do I add a command button on a worksheet to "paste" from the . [email protected] Excel Worksheet Functions 3 March 13th 05 06:25 PM
How do I add a command button on a worksheet to "paste" from the . Jalifid Excel Worksheet Functions 0 March 13th 05 03:01 PM


All times are GMT +1. The time now is 01:34 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"