Selecting the i-th element from a range

  • Thread starter Thread starter kakofoniks
  • Start date Start date
K

kakofoniks

Seems like this should be straightforward but I just don't know how.
Given the following setup:


A B C D E
----------------------------------------------
1 | -2 0 -3 -1


is there a formula that lets me choose the 2nd element from *range*
A1:D1? I am using MATCH() to get the position I am interested in.

Thanks!
K
 
Seems like this should be straightforward but I just don't know how.
Given the following setup:


A B C D E
----------------------------------------------
1 | -2 0 -3 -1


is there a formula that lets me choose the 2nd element from *range*
A1:D1? I am using MATCH() to get the position I am interested in.

Thanks!
K


=INDEX(...


--ron
 
Looking at answers to earlier questions, just realised the answer to
this one is:

=INDEX(A1:D1,2)

which would return the second item from this list. The second argument
is typically the result of a MATCH() operation.
 

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