Vlookup updates

G

Guest

I am trying to vlookup data in column X based on a particular month eg
December.

Is that possible?

Month x Data
Mar-06 1 100
Apr-06 2 51
May-06 3 497
Jun-06 4 494
Jul-06 5 0
Aug-06 6 10
Sep-06 7 197
Oct-06 8 495
Nov-06 9 700
Dec-06 10 747
Jan-07 11 660
Feb-07 12 542
 
B

Biff

Hi!

Try this:

A1 = Lookup_value = December

Formula needs to be array entered using the key combo of CTRL,SHIFT,ENTER:

=INDEX(C2:C13,MATCH(A1,TEXT(A2:A13,"mmmm"),0))

Biff
 
B

Biff

Here's another way as long as there is only one entry per month (as in your
posted example):

Normally entered:

A1 = December

=SUMPRODUCT(--(TEXT(A2:A13,"mmmm")=A1),C2:C13)

Biff
 

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