Vlookup query

  • Thread starter Thread starter Tester
  • Start date Start date
T

Tester

Hi, thanks for reading this. I have a 2 page workbook with invoice data
entry on the first page and i am looking to pull off totals onto the 2nd
page based on month number in the date column. My date column (B) contains
formatted date dd/mm/yy and for example column F contains the invoice sub
total in currency. My invoice dates are not in date order.
I want to have a row of fields on Sheet2 which have monthly totals in summed
from the data in sheet1, for example sum all the invoice totals of the whole
sheet if those invoices have the date month of 04.

I think I want to use VLOOKUP, maybe with Right or MID to pick the month out
of the date cell. What i am not sure about is how to put the function into a
range and is it all wrapped in a SUMIF?

Any help much appreciated, thank you.
Chris
 
Vlookup is meant to bring back a single value, where SUMIF can add multiple
cells based on a single criterion or, as in your case, a continuous range of
a single variable such as the date.
I'd try =sumif(Sheet1!b:b,">=" & date(2005,4,1),Sheet1!d:d) -
sumif(Sheet1!b:b,">=" & date(2005,5,1),Sheet1!d:d) to get the total of
invoices from April (all those on or after 4/1 MINUS all those on or after
5/1 leave only those from April).
Instead of the 4 and 5 shown in the dates, you could just as well use cell
references, say A5 and A5+1.
HTH. --Bruce
 
Thanks Bruce - I had worked out that SUMIF would help but was still trying
to incorporate it into VLOOKUP as an array, duh!!!!

Chris
 
Back
Top