set formula to display a data from a 5 columns table

D

David

I have a table from A1 - E5:

0-10 day 11-20 day 21-30 day 31-40 day
$1 - $1,000 15 20 25 30
$1,001-$2,000 35 40 45 50
$2,001-$3,000 55 60 65 70

How can I setup a formula in A10 to display the number from the table if I
key in the $ amount in A8 and the day in A9?
Example: input A8=$900, input A9= 12 day, output in A10 should be "20"
 
D

David

Gary''s Student said:
=OFFSET(A1,ROUNDDOWN((A9/10)-0.1,0),(ROUNDUP(A8/1000,0)+1))

Thanks you for your answer. I tried but got some wrong return. Did I enter
something wrong? I enter 900 in A8 and 10 in A9. The display in A10 is
"11-20 day"
 
R

Roger Govier

Hi

Try amending Gary's formula to
=OFFSET(A1,(ROUNDUP(A8/1000,0)),ROUNDDOWN((A9/10)-0.1,0)+1)
 

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

Top