Referencing Columns in a Row. PLEASE HELP!!

  • Thread starter Thread starter Chism Henry via OfficeKB.com
  • Start date Start date
C

Chism Henry via OfficeKB.com

Is there any way to get Excel to increment DOWN a COLUMN when applying a
common function/equation HORRIZONTALLY across a ROW?
 
You can use the Offset function along with the Column function:

=OFFSET($A$1,COLUMN(A1)-1,0)

This will increment down column A when it is copied across a column.
 
Another way, without being volatile:

=INDEX($A:$A,COLUMN(A:A))
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 

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

Back
Top