I have a sumproduct formula that draws on named ranges like this:
=sumproduct(
(createdate>=b1)*
(createdate<=b2)*
(email))
b1 is 1/1/14 and b2 is 1/31/14 so I'm asking for all records created in January.
But how do I ask for the count of DISTINCT email addresses? It's a pretty large data set ~ 200k records, fyi.
=sumproduct(
(createdate>=b1)*
(createdate<=b2)*
(email))
b1 is 1/1/14 and b2 is 1/31/14 so I'm asking for all records created in January.
But how do I ask for the count of DISTINCT email addresses? It's a pretty large data set ~ 200k records, fyi.