Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Paste Special - Formulas - Add

I cannot get this function to work in the current release of Excel 2007 where
I am pasting a formula to a cell that already has a value in it. Excel just
pastes the values rather than the formulas and adds the value of the formula
to exisiting values.

I use this feature in a large number of our business spreadsheets.

Is anyone else aware of this problem and or a fix?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Paste Special - Formulas - Add

Hi

I have never ever used Paste SpecialFormulas and Add together in any
version of Excel I have used from XL97 though to XL2007.
Somehow, I would have expected it to do exactly what you now describe.
However, I can see that in all previous versions it shows the original
cell value + the formula being copied with the result being the
combination of the two.

In XL2007, the behaviour is entirely different and it does, as you say,
evaluate the formula being copied and adds its result to the previous
value in the cell, and then contains just the final result.

I can see no way in XL2007 to amend this behaviour.
The only solution I can think of would be to use a simple macro like the
following.
I allocated it to a shortcut of Control+Q
The procedure then is to select the source cell with formula, Ctrl+C to
copy, move to destination cell and use Ctrl+Q

Sub PasteFormulaAndAdd()

Dim previous As Double
previous = ActiveCell.Value
ActiveCell.Select
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
ActiveCell = ActiveCell.Formula & "+" & previous
Application.CutCopyMode = False
End Sub

Maybe others will have a much better solution.

--
Regards

Roger Govier


"kcowie" wrote in message
...
I cannot get this function to work in the current release of Excel 2007
where
I am pasting a formula to a cell that already has a value in it. Excel
just
pastes the values rather than the formulas and adds the value of the
formula
to exisiting values.

I use this feature in a large number of our business spreadsheets.

Is anyone else aware of this problem and or a fix?

Thanks



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
Copy and Paste Special (Formulas) pastes cell value if numeric [email protected] Excel Discussion (Misc queries) 2 May 2nd 06 06:24 PM
Paste and Paste Special command are not enabled in Excel mcalder219 Excel Worksheet Functions 0 April 26th 06 06:57 PM
Paste Special Problem ajkim001 Excel Discussion (Misc queries) 1 March 10th 06 11:50 PM
Paste Special - All but formulas maplesugarsnow Excel Worksheet Functions 5 October 14th 05 03:09 PM
Paste Special Question Kevin Excel Discussion (Misc queries) 3 November 30th 04 11:34 PM


All times are GMT +1. The time now is 09:01 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"