I have a column of dates in the following UK format:
19/07/2007 15:00:00
I'm trying to calculate, on the fly, the number of cells with a date over 56 days ago. This is the closest I can logically work out myself:
=SUMPRODUCT(--(p_Network!$D$2:$D$50000<DATEVALUE(Today()-56)))
The cell...