Match Dates to Number

G

Guest

I have the following list in AC3:AD11

Qtr Ago Date
8 6/30/2004
7 9/30/2004
6 12/31/2004
5 3/31/2005
4 6/30/2005
3 9/30/2005
2 12/31/2005
1 3/31/2006

In Column AA, rows 1000+, I have numbers randomly dispersed 1 through 8.

In Column AC, I would like to return the proper date correpsonding to each
number. How do I do this? I can't/don't want to use nested if statements.
I supsect the best way is via a defined name?

Thanks for your help!
 
A

Arvi Laanemets

Hi

AB3=VLOOKUP($AA3,$AC$3:$AD$11,2,0)
or
AB3=OFFSET($AD$12,-$AA3,)
or
AB3=CHOOSE(9-$AA3,$AD$11)


Arvi Laanemets
 
B

Bearacade

Assuming that AC20 is looking up AA20:

Use this formula, make sure Column AC is Date Formated:

AC20: =LOOKUP(AA20,$AC$3:$AC$11,$AD$3:$AD$11
 
G

Guest

that's great, thanks.... interesting that you used "CHOOSE" haven't seen that
before either...
 

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