FORMULA REQD FOR ADD ING DATES AND VALUES AND PART NUMBERS

G

Guest

I am trying to do a formula that will add up all the values for each part
sold in a specify period.

worksheet is column based , 10000 lines of various different part numbers in
column A, 10000 different sales values column D and 365 different dates
invoiced column H.

I need to break this down to how much each part generated in each quarter eg
today()-90, today())-180 , today()-270, today()-365

please help as I really am stuck on this , im thinking of the lines of a
sumproduct approach, but just cant quite sort it out in my head, many thanks

I would prefer email to my home adress (e-mail address removed) as I can
access this at any time through the day

andy
 
R

Ragdyer

Will this work for you?

Say you have a master list of your part numbers in Column J.
Start date of calculation in L1
End date of calculation in L2

Enter this in K1:

=SUMPRODUCT(($A$1:$A$10000=J1)*($H$1:$H$10000>=$L$1)*($H$1:$H$10000<=$L$2)*$
D$1:$D$10000)

And copy down as far as the length of the master parts number list.
 

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