Autofill issue

J

Jean

I am trying to autofill a formula. I am in cell A12. Assuming that I want
to multiply A10*J1. When I autofill it across, I would like the A10 to
change to A11, A12, etc. However, I want the J1 to change to J2, J3, etc.
Absolutes will not work. I'm sure that this isn't simple multiplication.
Does anyone have a function that will do this? Thanks.
 
M

Mike H

hi,

Try this in a12 and drag right

=INDIRECT("A"&COLUMN(J10))*INDIRECT("J"&COLUMN(A1))

Mike
 
J

Jacob Skaria

In A12
=A10*J1

Copy the cell. Select the required cells from A13 to An. Right click>Paste
Special>Formulas..OK

If this post helps click Yes
 
J

Jean

It's close...however, the J is changing to a K...it needs to copy down to J2,
J3, etc...
 
J

Jean

I think I'm all set, Mike...I ust needed to make the J and absolute. Thanks
so much!!!!
 
J

Jean

So sorry...it's still not working. If I Absolute the J, it does remain in
column J. However, the formula is not dropping down to the next row in
column J.
 
J

Jacob Skaria

The highlighted references does not matter. If you are looking at

A10*J1
A11*J2
A12*J3
the formula should work

=INDIRECT("A"&COLUMN(J1))*INDIRECT("J"&COLUMN(A1))

If this post helps click Yes
 
J

Jacob Skaria

Try

=INDEX(10:10,1,COLUMN(A1))*INDIRECT("J"&COLUMN(A1))

If this post helps click Yes
 

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