View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Lisa Lisa is offline
external usenet poster
 
Posts: 328
Default Sumproduct next two weeks

It worked Great Thanks!!!!!

Lisa

"PCLIVE" wrote:

I think your formula is incorrect. I believe it should be:
=SUMPRODUCT(--(F2:F13<TODAY()),--(G2:G13="Open"))
That would be for anything that is in the past. Yours was saying anything
greater than today.

The one from now though two weeks from now:
=SUMPRODUCT(--(F2:F13=TODAY()),--(F2:F13<=TODAY()+14),--(G2:G13="Open"))

And anything beyond that point:
=SUMPRODUCT(--(F2:F13TODAY()+14),--(G2:G13="Open"))

HTH,
Paul
--

"Lisa" wrote in message
...
HELP!!! I have a formula that will tell me how many items are open with a
date in the past what I need now is one that will also tell me how many
open
items will be coming up in the next two weeks and one for anything over
two
weeks.. Any help would be greatly appreciated. Thanks in advance.

=SUMPRODUCT(--(F2:F13TODAY()),--(G2:G13="Open"))