I have a style sheet in which I have to dates with times
-----------------
29/09/2011 12:00
29/09/2011 14:00
-----------------
If current date and time is 29/09/2011 11:50 then row is green
If current date and time is 29/09/2011 12:10 then row is orange
If current date and time is 29/09/2011 15:05 then row is red
@chris neilsen suggested the following:
Datevalue does what it says on the tin: gets the date. Yuo will need to add TimrValue to it to get date and time.
=DATEVALUE(LEFT(B2,FIND(CHAR(10),B2)-1))+TIMEVALUE(LEFT(B2,FIND(CHAR(10),B2)-1))>NOW()
But i cant get it to work.
Could anyone help me on this?