vicomte777

New Member
Joined
Jul 24, 2014
Messages
8
Hi
I'm having some sumproduct issues after having tried various countifs. Hopefully you experts can help.
My apologies, I'm now on my linux computer at home and not the windows environment at work, so I will try and recreate the functions from memory, but may get them slightly wrong.

ABCDEF
G
1
Stock DateSell DateTypeNote
2
01/01/2015A BlueError Duplicate entryDate
From
01/01/2015
3
01/01/201516/01/2015Blue x314Blue
4
06/01/201512/01/2015Yellow x918Orange
5
10/02/201518/02/20153x Orange21Yellow
6
08/01/201526/02/2015Blue x1Error entered wrong dates
7
02/02/201501/03/2015
8
13/12/2014Error
9
02/05/201420/01/20151 Orange
1006/02/201521/02/20153 Blue

<tbody>
</tbody>

Ok - So the aim here is to only count the rows where:
a) the date in column A is after 01/01/2015
b) the difference in dates between column B and A is less than 14 days for Blue, 18 days for Orange and 21 days for Yellow
- this period in days may change in the future so I've placed them in cells with an intention that the period can be easily updated
c) a count of each colour
d) discounting any rows which have the word Error in column D

Now, say you sell the products Blue, Yellow and Orange but you only want to give sales bonus's when the time from stock date to sell date is less than 14 days... and bonus's are based on orders, not quantity within the order.

The actual sheet has different parameters, and I'm in a totally different industry/environment however I thought the narrative might help (it does have the dates which is causing the issue), but generally the same format. The actual sheet is some 10,000 rows long.

Have attempted:
COUNTIF - For example tell me how many Blues:
COUNTIFS(A2:A15000,">="&$G$2,B2:B15000,"<="&A2:A15000+$F$3,C2:C15000,"*Blue*",D2:D15000,"<>"&"*Error*") - I can't use 'MONTHS()' within COUNTIF/COUNTIFS.

SUMPRODUCT - As I know COUNTIF/COUNTIFS do not like 'MONTH()' functions, as I may need to break data down into individual Months based on Sale dates. In any case I've tried:
So again for Blue - Something like this
SUMPRODUCT(--(A2:A15000>=$G$2),--(B2:B15000<>""),--((B2:B15000-A2:A15000)>=$F$3),--(ISNUMBER(SEARCH("Blue",C2:C15000))),--(NOT(D2:D15000<>"*Error*"))

The issue comes down to subtracting one column of dates from the other and comparing that result to the period-difference I've set. Particularly for the SUMPRODUCT function, I get #VALUE errors where there are empty cells in column B. Over a short range of data, Excel seems to be able to handle it, but when looking at 7000 rows of data, the SUMPRODUCT function dies and just display's '#VALUE'.

I'm not very good with SUMPRODUCT being new to it as of around 48 hours ago, however were I wanting to look at Blue sales in the month of Feb I know I'd have fare more luck looking at a SUMPRODUCT function like:
SUMPRODUCT(--(A2:A15000>=$G$2),--(B2:B15000<>""),--(MONTH(B2:B15000)=2),--((B2:B15000-A2:A15000)>=$F$3),--(ISNUMBER(SEARCH("Blue",C2:C15000))),--(NOT(ISNUMBER(SEARCH("Error",D2:D15000)))))

Also, the input variables like the sale periods and output results of these functions are on a different sheet to the data

Ok ... I think the above recreates the general gist - hopeing you can help as the formulas aim to automate a process I've only just discovered a colleague has been manually calculating based on Autofilters for years ... I may be inheriting the process and know there should be a way of calculating this automatically.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi, just confirming I have tried taking the date ranges and using the condition --(B2:B15000<>"") which attempts to remove empty/null values from the array. I've also tried multiplication of the output of the date-date (B-A columns) *1, and tried +0, and various other methods to attempt to negate the dreaded value errors in sumproduct results. Really somewhat stumpe. I've tried placing --(IF(ISBLANK(B2:B15000),0,B2:B15000-A2:A15000<=$F$3)) in there and #Value still comes out. It really seems to be getting confused with the date minus date is less than 'x' and wondered whether it's some issue with the recognition of the dates, so put Date(year( etc)) around the dates to force their recognition...still no luck. When I attempt to step through the output, I get {1,0,0,0,1,0,1,0,1,#Value,0,1,1,0.. Etc}

Anyway, really stumped. Wish there was a switch to sumproduct to treat null/empty cells as zeroes.
 
Upvote 0
vicomte,


Maybe try....

Excel 2007
ABCDEFGH
1Stock DateSell DateTypeNote
201/01/2015A BlueError Duplicate entryDate
3From01/01/2015COUNT
401/01/201516/01/2015Blue x314Blue0
506/01/201512/01/2015Yellow x918Orange2
610/02/201518/02/20153x Orange21Yellow1
708/01/201526/02/2015Blue x1Error entered wrong dates
802/02/201501/03/2015
913/12/2014Error
1002/05/201420/01/20151 Orange
1106/02/201521/02/20153 Blue
1202/05/201512/05/20151 OrangeAn error
1302/05/201512/05/20152 Orange
Sheet4
Cell Formulas
RangeFormula
H4=SUMPRODUCT((ISNUMBER(SEARCH($G4,C$2:C$20)))*(NOT(ISNUMBER(SEARCH("ERROR",UPPER(D$2:D$20)))))*(A$2:A$20>=$G$3)*(B$2:B$20-A$2:A$20<=$F4)*(B$2:B$20-A$2:A$20>0))


Hope that helps.
 
Upvote 0
Hi Snakehips

Thank you, I used some of your formula and unfortunately didn't work in the active sheet, however with some tweaking it suddenly did.

What I worked out is essentially, while this works:
Code:
[COLOR=#ff0000]B$2:B$20-A$2:A$20<=$F4 [/COLOR]

Code like this doesn't:
Code:
[[COLOR=#ff0000]A$2:A$20>=[COLOR=#ff0000]B$2:B$20-[/COLOR]$F4[/COLOR]

i.e. the calculation needs to be done on the left side of the condition being presented, as soon as I put the calculation on the right, it just wouldn't work for me.

Anyway, just wanted to touch base and say it is working and I'm feeling more confident with SUMPRODUCT now (despite being faaar from an expert)
 
Upvote 0

Forum statistics

Threads
1,215,474
Messages
6,125,026
Members
449,204
Latest member
LKN2GO

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top