Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
I have been searching this forum all day and I can't seem to get any code that I find to work. Below is what I believe should work. Cell D349 has 3/1/2007 and cell D350 has 3/31/2007. =SUMPRODUCT(--(B2:B347=--D349),--(B2:B347<=--D350),--(C2:R347="39BD382*")) What I'm basically lookinf for is: if the part number 39BD8382 is present anywhere in cell range C2:R347, how many shipped in March of 2007? Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If they are proper dates all you need is
=SUMPRODUCT(--(B2:B347=D349),--(B2:B347<=D350),--(ISNUMBER(SEARCH("39BD382",C2:R347)))) -- __________________________________ HTH Bob "LouD" wrote in message ... Hello, I have been searching this forum all day and I can't seem to get any code that I find to work. Below is what I believe should work. Cell D349 has 3/1/2007 and cell D350 has 3/31/2007. =SUMPRODUCT(--(B2:B347=--D349),--(B2:B347<=--D350),--(C2:R347="39BD382*")) What I'm basically lookinf for is: if the part number 39BD8382 is present anywhere in cell range C2:R347, how many shipped in March of 2007? Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Bob,
I get a #VALUE! error in the cell with the formula. I am supposed to hit ctrl + shift + enter when I'm done editing the formula to put the { } around it, right? And how do I check for proper dates? I know I have the cells formatted as dates... |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Firstly, apologies, I failed to spot the third criteria was multi-column.
Try =SUMPRODUCT((B2:B347=D349)*(B2:B347<=D350)*(ISNUM BER(SEARCH("39BD382",C2:R347)))) Secondly, no, it is not array entered, just a standard formula. -- __________________________________ HTH Bob "LouD" wrote in message ... Bob, I get a #VALUE! error in the cell with the formula. I am supposed to hit ctrl + shift + enter when I'm done editing the formula to put the { } around it, right? And how do I check for proper dates? I know I have the cells formatted as dates... |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Bob,
This formula works perfect: =SUMPRODUCT((B2:B347=D349)*(B2:B347<=D350)*(ISNUM BER(SEARCH("39BD382",C2:R347)))) Thanks for all your help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sumproduct - Date Range | Excel Discussion (Misc queries) | |||
sumproduct between date range | Excel Worksheet Functions | |||
Can a date range be used in SUMPRODUCT | Excel Worksheet Functions | |||
SUMPRODUCT between date range | New Users to Excel | |||
Sumproduct with date range | Excel Worksheet Functions |