Im trying to count the amount of dates in Col M that have passed Col E
For example
Col E
Due Date 19/03/17
Col M
Completed Date 23/03/17
I tried
=COUNTIF(M:M,M:M>E:E)
but this didn't work. It doesn't seem to like adding the column values. I managed to do cell to cell but when it comes to columns it really doesn't want to work. Its probably simple but giving me serious headache ATM.
ADDITIONAL:
The formula im trying to change is:
=COUNTIFS($M:$M,"<="&G6,$M:$M,">"&F6)
G6=The date of 24/03/17
F6=The date of 17/03/17
Im trying to get it to count the days between these two ranges that are completed outside of the requested date if that makes sense.
=COUNTIF(M:M,">"&E6)(not in Column M), where E6 holds the date criteria (in your example19/03/17) - Shai Rado=M1>E1, pull down, and countif theTRUEvalues. Or you can piss blood and do it with an array formula. - vacip