Hi,
I have a sumproduct formula that matches a reporting month and year in the format mmm-yy (cell I15) to a column of dates (colH). It then counts all rows where column N contains 'Late Start' as a substring.
=SUMPRODUCT(1* (MONTH('Stats Tracker'!$H$2:$H2000)=MONTH(I15)) * (YEAR('Stats Tracker'!$H$2:$H2000)=YEAR(I15)) * (ISNUMBER(SEARCH("*Late Start*",'Stats Tracker'!$N$2:$N2000))))
This works fine, but now I need to change this to count all rows where column N does not contain 'Late Start' as a substring.
This is the closest I've got to making it work:
=SUMPRODUCT(1*(MONTH('Stats Tracker'!$H$2:$H2000)=MONTH(I15))*(YEAR('Stats Tracker'!$H$2:$H2000)=YEAR(I15))*(ISNUMBER(SEARCH("<>Late Start""",'Stats Tracker'!$N$2:$N2000))))
Can anyone advise where I'm going wrong?
Thanks,
K
I have a sumproduct formula that matches a reporting month and year in the format mmm-yy (cell I15) to a column of dates (colH). It then counts all rows where column N contains 'Late Start' as a substring.
=SUMPRODUCT(1* (MONTH('Stats Tracker'!$H$2:$H2000)=MONTH(I15)) * (YEAR('Stats Tracker'!$H$2:$H2000)=YEAR(I15)) * (ISNUMBER(SEARCH("*Late Start*",'Stats Tracker'!$N$2:$N2000))))
This works fine, but now I need to change this to count all rows where column N does not contain 'Late Start' as a substring.
This is the closest I've got to making it work:
=SUMPRODUCT(1*(MONTH('Stats Tracker'!$H$2:$H2000)=MONTH(I15))*(YEAR('Stats Tracker'!$H$2:$H2000)=YEAR(I15))*(ISNUMBER(SEARCH("<>Late Start""",'Stats Tracker'!$N$2:$N2000))))
Can anyone advise where I'm going wrong?
Thanks,
K