Fixed vlaue in the Fill handle opperation

G

Guest

Hi
I have this formula in Cell A3:
sum(A1+A2)

I want to fill handle this cell and have the cell A4 as below:
sum(A1+A3)

As you see, the A1 must be fixed. But this operation makes the A4 as below:
sum(A2+A3) which is not my aim.

Thnx 4 any reply.
 
R

Rick Rothstein \(MVP - VB\)

I have this formula in Cell A3:
sum(A1+A2)

I want to fill handle this cell and have the cell A4 as below:
sum(A1+A3)

As you see, the A1 must be fixed. But this operation makes the A4 as
below:
sum(A2+A3) which is not my aim.

You can use an absolute reference for A1...

=SUM(A$1+A2)

Rick
 
D

Dave Peterson

Or just
=A$1+A2

Hi
I have this formula in Cell A3:
sum(A1+A2)

I want to fill handle this cell and have the cell A4 as below:
sum(A1+A3)

As you see, the A1 must be fixed. But this operation makes the A4 as below:
sum(A2+A3) which is not my aim.

Thnx 4 any reply.
 

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

Similar Threads

Excel fill handle use -advanced 1
How to use cell reference? 9
Conditional Printing 2
Copy a formula using Vlookup 2
Combining Text From Cells 3
hyperlink 1
Return latest value from data range 4
copy formula 3

Top