Need formula to check data in 2 columns to sum 3rd column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Need a formula to enter on Report Sheet under Month as indicated from tables below. The data base worksheet has info inserted daily and the report will be on another worksheet to calculate as data is updated. Any ideas??
(Need total paid for all rows paid to Name 1 with dates in month of Jan)
Data Base Worksheet Report Sheet
NAME DATE PAID NAME JAN FEB
Name 1 01/01/04 $200.00 Name 1 ??Paid ??Paid
Name 1 01/22/04 $200.00 Name 2 ??Paid ??Paid
Name 2 01/15/04 $200.00
Name 1 02/04/04 $200.00
 
Hi
try the following
=SUMPRODUCT(--(A1:A100="Name
1"),--(YEAR(B1:B100)=2004),--(MONTH(B1:B100)=1),--(B1:B100<>""),C1:C100
)
 

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

Back
Top