Incremmenting a formula

P

Patti

How do I get a formula to increase by 12? I can make data
increase by doing a "fill series" but there is not that
option for formulae.
 
H

Harald Staff

If the formula is supposed to figure out and show the sum of two cells, like
=A1+B1
and those cells contain 2, then the formula will display 4. What do you want it to display
after this incrementing operation, and why ?
 
G

Guest

I want to incremment the formula by 12, not the resulting
data. Example: =$C30/$B27 then =$C(30+12)/$B28
I want to be able to drag this across many columns and
have each column refer to a cell that is 12rows from the
one before it.
Patti
-----Original Message-----
If the formula is supposed to figure out and show the sum of two cells, like
=A1+B1
and those cells contain 2, then the formula will display
4. What do you want it to display
 
H

Harald Staff

I see. It's usually done by indirect:
=INDIRECT("C"&29+12*ROW())
but that's using the host cell's absolute row number, so you can't move or change or
insert rows. Pretty vulnerable. If this is a once-for-all-eternity operation then you are
better off with a custom formula-entering macro running once.
 

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