What is the best way to compare a set of dates from the same field/table?
my table looks like this
review_ref --- Client_ref --- review_date
1 ---- 100 --- 18/01/2014
2 ---- 100 --- 27/04/2014
3 ---- 100 --- 05/06/2014
4 ---- 100 --- 11/09/2014
5 ---- 100 --- 21/09/2014
6 ---- 124 --- 14/09/2013
7 ---- 124 --- 18/12/2013
8 ---- 125 --- 11/11/2013
9 ---- 125 --- 01/01/2014
10 --- 125 --- 16/02/2014
and so on..
I want to be able to return the number of days difference and apply conditional formatting if the count is greater than 30 days.
my table looks like this
review_ref --- Client_ref --- review_date
1 ---- 100 --- 18/01/2014
2 ---- 100 --- 27/04/2014
3 ---- 100 --- 05/06/2014
4 ---- 100 --- 11/09/2014
5 ---- 100 --- 21/09/2014
6 ---- 124 --- 14/09/2013
7 ---- 124 --- 18/12/2013
8 ---- 125 --- 11/11/2013
9 ---- 125 --- 01/01/2014
10 --- 125 --- 16/02/2014
and so on..
I want to be able to return the number of days difference and apply conditional formatting if the count is greater than 30 days.