here's the formula i'm using.
=SUMPRODUCT(--(H3:H200="ABC"),--(D3:D200>DATE(2008,5,18)),--(D3:D200>=DATE(2008,5,22)),E3:E200)
it's only adding up if the date matches 5/22, not 5/19 through 5/22.
tia
You need to check the original formula I gave you and use the same
technique, the last date part should be
(D3:D200<=DATE(2008,5,22)
and not
(D3:D200>=DATE(2008,5,22)

Signature
Regards,
Peo Sjoblom
> here's the formula i'm using.
> =SUMPRODUCT(--(H3:H200="ABC"),--(D3:D200>DATE(2008,5,18)),--(D3:D200>=DATE(2008,5,22)),E3:E200)
>
> it's only adding up if the date matches 5/22, not 5/19 through 5/22.
> tia
Ann - 29 May 2008 15:59 GMT
thank you so much, don't know when i changed it, that fixed it!
> You need to check the original formula I gave you and use the same
> technique, the last date part should be
[quoted text clipped - 10 lines]
> > it's only adding up if the date matches 5/22, not 5/19 through 5/22.
> > tia