How can I copy a formula into a column but extend it by row

G

Guest

I have information in a single row. I want to create a formula and extend it
to an entire column but I want the cell value in the formula to extend by row.
 
P

Pete_UK

I don't understand what this means - can you give further details and
examples of what you want to do?

Pete
 
G

Guest

I have data in a row
x xx xxx xxx

I want to create a formula that references x. Then I want to copy and past
this formula in a column but I want the reference to increase by row so that
when I copy and paste it looks like this

x
xx
xxx
xxxx

Say x is orginally in cell A1. If I copy and paste down it would increment
to A2, A3, etc. I want the incrementation to be B1, C1, C1, etc even though I
am copy to different rows I want it to increment the column position.

TIA
 
R

Ron Coderre

Perhaps something like this:

With:
B1: Alpha
C1: Bravo
D1: Charlie
E1: Echo

A2: =INDEX($B$1:$E$1,ROWS($1:1))
Copy that formula down as far as you need.

In the above example, these values are returned:
A2: Alpha
A3: Bravo
A4: Charlie
A5: Echo

Is that what you're looking for?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 
G

Guest

Yes

Thank You

Ron Coderre said:
Perhaps something like this:

With:
B1: Alpha
C1: Bravo
D1: Charlie
E1: Echo

A2: =INDEX($B$1:$E$1,ROWS($1:1))
Copy that formula down as far as you need.

In the above example, these values are returned:
A2: Alpha
A3: Bravo
A4: Charlie
A5: Echo

Is that what you're looking for?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 
R

Ron Coderre

You're welcome......I'm glad I could help
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 

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