calulate amount based on multi condition

  • Thread starter Thread starter Lowan Chan
  • Start date Start date
L

Lowan Chan

Hi,

I have a table similar as below, how can I calculate the amount of A during
December 1 to 7? I know I can use DSUM for sigle result, but my purpose is
to consoladate a table for A, B, C. Is there any formula I can use?

coloum A coloum B coloum C
1/12/09 A 100
5/12/09 C 50
9/12/09 A 120
8/12/09 B 80
4/12/09 A 90

Thanks a lot!
 
Hi,

=SUMPRODUCT((A1:A10>=DATE(2009,12,1))*(A1:A10<=DATE(2009,12,7))*(B1:B10="A")*(C1:C10))

Mike
 
Hi, Mike,

I tried, but doesn't work.....

I have another question, if i have all the year's data on this table, how
can i caculate the amount based on week 1, week 2, week 3...?
 
Hi,
I tried, but doesn't work.....

That isn't a very helpful explanation of what went wrong but if it didn't
work then you need to check your data as follows:-

1. Are the dates in column A really dates. Try adding 1 day to one of the
dates and see what happens.

2. Are there any leading/trailing spaces in column B

3. Is column C really a number? Try adding 1 to one of the numbers to test.

As for summing by week if my first answer didn't work then this is unlikely
to but here goes.

Create a helper column with this formula in
=WEEKNUM(A1)
and drag down

To sum use this where D is the helper column and the week number you want is
49

=SUMPRODUCT((D1:D10=49)*(B1:B10="A")*(C1:C10))

Mike
 
Hi Mike,
oh, sorry, it was my mistake. it works.
how about to calculate base on each week, week 1, week 2......
thanks & regards,
Lowan
 
Hi, Mike,

I have another problem. I found that I can use these format in excel 2007
perfectly, but not in 97-2003 version. Once I save to 97-2003, all the
result of fomula end up "#value". How can I solve this?

thanks a lot!
 

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

Similar Threads

dates inbetween 3
Complex Look Up 4
and and if functions 1
Complex Look Up (amended) 2
Summing like data 5
Help on formula 2
Lookup, index, match, range, oh my... 1
LOOKUP function between two dates in Excel 2007 6

Back
Top