How do I copy a formula/paste w/o losing the cell content?

G

Guest

I have a formula such as "=sum(d34+d35)", I decided to move the location, but
when I move the location the formula is now "=sum(d31+d31). I would like to
move the first formula anywhere on the spreadsheet w/o it being changed. How
do you do that? Is it an absolute value or something like that?
 
R

RagDyer

OR,
Select the entire formula in the formula bar,
Right click and choose "COPY",
Hit <Enter>,
And paste anywhere you wish.
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
K

Ken Russell

Moving changes the formula unless you make the references absolute as Anne
suggests.

There is another way. Cut and paste instead of copy and paste, but that
removes the formula from its original cell.

--
Ken Russell

(e-mail address removed)
Remove yourhat to reply by e-mail
..
 
G

Guest

Point of information:

Strictly speaking your formula is incorrect, =D34+D35 would give you the
same answer. SUM() is intended for ranges eg =SUM(A1:A199). As mentioned
elsewhere if you want to copy this formula anywhere in the spreadsheet but
still sum the same values you must use absolute addresses.
 
B

Bob Phillips

If you really mean move, you can drag it across as well which doesn't update
it.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
D

Dave Peterson

Or
=sum($d$34:$d$35)
or
=sum($d$34,$d$35)
or
=$d$34+$d$35

(I wouldn't use the + inside the =sum() function.)

But I bet your real point was about using absolute references.
 

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