I am trying to create a formula that displays a cell date if today’s date is greater than or equal to a “parameter” date, and the time now is greater than or equal to a “parameter” time. I have checked the system format and the LibreOffice Calc format but I am getting a value from NOW() that is not correct.
This is my formula;
=IF(AND(TODAY()>=$Rates.$B8,(TODAY()-NOW())>=$Rates.$B7),$Rates.$B8,“Before Bell”)
$Rates.$B8 is the target date to which the current date has to be greater than or equal.
$Rates.$B7 is the target time to which the current time needs to be greater then or equal.
I don’t seem to be able to post an image of the function wizard, but basically the values displayed in the wizard seem to show the expected values, and therefore the result should be TRUE (THEN), but the returned value is the FALSE (ELSE) value.
I cannot see the fault. Can someone spot it for me.