Store # Jan Feb Mar
1 471,374 488,292
3 - -
4 488,295 470,050
5 122,927 113,160
I have the data above and need to do a 2 part lookup. I need to do a lookup
on store 1 and then do a lookup on Jan to return the value (471,374). I need
to do this for each store, for each month of the year. I am trying to only
write 1 formula that will first match the correct store and then do an
hlookup on the appropriate month.
I need help. Thanks.
akphidelt - 18 Apr 2008 18:29 GMT
I've ran in to this problem couple times. It all depends on how your lookup
is set up. What are you using?? Cells, comboboxs, inputbox? But just for
starters I usually use the offset formula but that requires additional set
up. What you can do is a vlookup
=Vlookup(Store#,YourRange,Month(YourDate)+1,FALSE)
The Month() formula gives you a serial number of the month. So the vlookup
would take the number of the month and use that as it's horizontal lookup. So
it all depends on how you are looking up this value.
> Store # Jan Feb Mar
>
[quoted text clipped - 10 lines]
>
> I need help. Thanks.
Dave Peterson - 18 Apr 2008 18:34 GMT
You could use =index(match())
Debra Dalgleish has lots of notes
http://www.contextures.com/xlFunctions03.html (for =index(match()))
> Store # Jan Feb Mar
>
[quoted text clipped - 10 lines]
>
> I need help. Thanks.

Signature
Dave Peterson
Pete_UK - 18 Apr 2008 18:56 GMT
Suppose you use cell N1 for the store number and N2 for the month that
you are interested in. This formula will get you the appropriate
value:
=INDEX(B2:M5,N1,N2)
assuming your data occupies rows 2 to 5 and columns B to M with your
labels in column A and row 1.
Hope this helps.
Pete
On Apr 18, 6:16 pm, MikeD1224 <MikeD1...@discussions.microsoft.com>
wrote:
> Store # Jan Feb Mar
>
[quoted text clipped - 10 lines]
>
> I need help. Thanks.