Help with formula

B

bobdelrn

=SUMPRODUCT(--('Items Sent To Shop'!B3:B999="12345"),--(MONTH('Items Sent To Shop'!A3:A999)=7),--(ISNUMBER('Items Sent To Shop'!A3:A999)),D3:D999

B3:B999 is Part Numbers
A3:A999 is Dates
D3:D999 is Quantities.
Formula should match all part numbers "12345", All Dates in July(7) and then Sum those quantities in D3:D999 but my resuls show "0". Please Help!
 
C

Claus Busch

Hi,

Am Fri, 13 Jul 2012 06:44:44 -0700 (PDT) schrieb (e-mail address removed):
=SUMPRODUCT(--('Items Sent To Shop'!B3:B999="12345"),--(MONTH('Items Sent To Shop'!A3:A999)=7),--(ISNUMBER('Items Sent To Shop'!A3:A999)),D3:D999

B3:B999 is Part Numbers
A3:A999 is Dates
D3:D999 is Quantities.
Formula should match all part numbers "12345", All Dates in July(7) and then Sum those quantities in D3:D999 but my resuls show "0". Please Help!

your part numbers are numbers, but in your formula your looking for
text.
Try:
=SUMPRODUCT(--(B3:B999=12345),--(MONTH(A3:A999)=7),D3:D999)


Regards
Claus Busch
 
B

bobdelrn

Hi,

Am Fri, 13 Jul 2012 06:44:44 -0700 (PDT) schrieb (e-mail address removed):

> =SUMPRODUCT(--('Items Sent To Shop'!B3:B999="12345"),--(MONTH('Items Sent To Shop'!A3:A999)=7),--(ISNUMBER('Items Sent To Shop'!A3:A999)),D3:D999
>
> B3:B999 is Part Numbers
> A3:A999 is Dates
> D3:D999 is Quantities.
> Formula should match all part numbers "12345", All Dates in July(7) and then Sum those quantities in D3:D999 but my resuls show "0". Please Help!

your part numbers are numbers, but in your formula your looking for
text.
Try:
=SUMPRODUCT(--(B3:B999=12345),--(MONTH(A3:A999)=7),D3:D999)


Regards
Claus Busch

Still will not work, Still shows "0" Thanks for your help
 

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