Hello
I am working on a table where I am using sumproduct but do not want to count blank cells or cells with text in (column G) I have used the following equations;
which returns 9
and
which returns FALSE
The answer should be 5 as there are 5 examples where the date in column G is the same or less than the corresponding date in column D
Any help would be most appreciated
Thanks
Any
I am working on a table where I am using sumproduct but do not want to count blank cells or cells with text in (column G) I have used the following equations;
Code:
=IF(OR(ISBLANK($G$3:$G$15),ISTEXT($G$3:$G$15)),,SUMPRODUCT(--($G$3:$G$15<=$D$3:$D$15)))
and
Code:
=IF(ISNUMBER($G$3:$G$15),SUMPRODUCT(--($G$3:$G$15<=$D$3:$D$15)--($G$3:$G$15<>"")))
The answer should be 5 as there are 5 examples where the date in column G is the same or less than the corresponding date in column D
Any help would be most appreciated
Thanks
Any