1
1
I want to write a function whereby I could count a cell if it is blank OR greater than a date.
This is a piece in what will be a much larger formula so looking to avoid a solution of SUM(countif(D:D,""),countif(D:D,">"&E1))
The function I have currently looks like this:
Sum((Countifs(D:D,{">"&E1,""}))
Where E1 = 12/1/2015
Thanks for your help!
It isn't that
COUNTIFS
doesn't like the mixing of array constants and cell references. It is that an array constant cannot contain a cell reference. Array constants can contain only numbers, text, logical values (such as TRUE and FALSE), and error values ( such as #N/A). – Ron Rosenfeld – 2016-02-04T03:06:12.190