Cell entry used in formula

  • Thread starter Thread starter greasybob
  • Start date Start date
G

greasybob

I'm using a common lookup formula like the following:
=index(B1:B5,match(E1,A1:A5,false),1)

Is it possible to write the above formula to reference entries in cell
as cell numbers?

For example: If cell J1 contains the text "B3" , can a function b
written in place of E1 (in the formula) to reference J1 and use B3 (o
whatever cell number in in J1)?

Hope this makes sense.

Thanks

Bobb
 
I'm guessing you might want something like this:

=INDEX(B1:B5,MATCH(INDIRECT(J1),A1:A5,FALSE),1)

Your example is confusing because you used B3, which is right in your index
range, but I assume that was an oversight (or I don't understand).

--
Jim Rech
Excel MVP

| I'm using a common lookup formula like the following:
| =index(B1:B5,match(E1,A1:A5,false),1)
|
| Is it possible to write the above formula to reference entries in cells
| as cell numbers?
|
| For example: If cell J1 contains the text "B3" , can a function be
| written in place of E1 (in the formula) to reference J1 and use B3 (or
| whatever cell number in in J1)?
|
| Hope this makes sense.
|
| Thanks
|
| Bobby
|
|
| ---
| Message posted
|
 

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