offset

  • Thread starter Thread starter Pete
  • Start date Start date
P

Pete

need soem help.
user types in a value in a1

in b2 i want to display the results

in a3:a50 i have the data i want to display in b2
corresponding to the number entered in a1

how is this done?

so if 13 is entered in a1 then i want to display
want b2 to equal what is in cell a13
 
Hi Pete,

If I understand you correctly, try,

=OFFSET($A$2,$A$1-2,0)

Hope this helps!
 
Try this in B2:

=INDIRECT("A"&A1)
--

HTH,

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


need soem help.
user types in a value in a1

in b2 i want to display the results

in a3:a50 i have the data i want to display in b2
corresponding to the number entered in a1

how is this done?

so if 13 is entered in a1 then i want to display
want b2 to equal what is in cell a13
 
Hi,

=IF(AND(A1>=3,A2<=50),OFFSET($A$1,$A$1-1,0),"")

or

=IF(AND(A1>=3,A2<=50),INDIRECT("A"&A1),"")

--
Regards,
Soo Cheon Jheong
Seoul, Korea
_ _
^¢¯^
--
 

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