First I should add - I've not vetted the VBA etc the below is more to illustrate how to avoid need for array (Sumproducts included)
Jason, when faced with this issue you will often find that
less elegant = more efficient
That it to say you will be best served using helpers enabling you to dispense with array requirement (incl. Sumproduct)
If we look first at the Sumproduct formulae present on Summary1 we can see that the key bits of info are:
So my advice would be simple... create a concatenation field on Data that holds these pieces of info that permit you to easily identify from one column which values should be included and which should be excluded, eg:
The 2 date tests will generate 0 or 1 depending on whether or not they're valid based on the date parameters specified on Summary1 sheet...
Once the above is setup you can look to dispense with Sumproduct altogether and use a SUMIF approach such that:
You will note the use of wildcards in our search criteria... so for values in C we're not really bothered as to whether or not the date on Data is within the boundaries specified by the date in D2 so we use a wildcard (*) -- whatever the value it's ok.... for D we're not interested in the 0/1 flag for the validity of the date on Data sheet when compared to the date specified in C2 so we switch the wildcard... because we are most definitely interested in the 2nd of the 0/1 flags as we only want to include those with a flag of 1.... I hope that makes sense.
You should find the above when copied produce the same results as the sumproduct but that performance improves.
If you're happy with this approach post back and we can deal with the 2nd sheet.
Bookmarks