using INDIRECT in array formulas

  • Thread starter Thread starter Steven Stovall
  • Start date Start date
S

Steven Stovall

This really is a piggyback to an earlier post, but does anyone know
why the following array formula generates #VALUE! errors?

{=INDIRECT(ADDRESS(ROW(),COLUMN()-2))}

This construction works for a single cell, but I need something like
it on a range of rows.

Steven Stovall
 
Steven,

have you tried

=INDIRECT(ADDRESS(ROW(),COLUMN()-2,3))

as a non-array formula, and just copy down.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
You don't need an array formula, just drag fill the formula down the column.
 
Steven,
For what its worth (e.g. if you really need the array formula for structural
reasons)
an array formula like

{=OFFSET($E$1,0,-2,4,1)}

entered in range E1:E4 will give you the data values from C1:C4

Alex J
 

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