Alireza Ghaffari
Alireza Ghaffari

Reputation: 1104

Filling data automatically with fill handle

I have a data sheet and I want to fill data using fill handle in Excel because there are so many repetitive works to do, but I can't customize its pattern. For example I want to have cells with the following formulas:

=REVENUES!C9*REVENUES!E9 | =REVENUES!C9*REVENUES!F9 | =REVENUES!C9*REVENUES!G9 | ...

enter image description here

But when I use fill handle, "C9" cell will also be changed! What should I do?

Upvotes: 1

Views: 63

Answers (1)

Andre
Andre

Reputation: 27634

If you want C9 to be fixed, you need to change it to an absolute reference by using $ signs:

=REVENUES!$C$9*REVENUES!E9

Then you can use autofill, and C9 will stay but E9 will change.

See e.g. here for absolute vs. relative references:
http://www.excel-easy.com/functions/cell-references.html

Upvotes: 2

Related Questions