I want to compare duedate and datetoday
I am getting the correct dates but it won't compare for some reason it always returns TRUE thus always making it Overdue.
Any help is appreciated.
HTML Code:
dateEnd=string\concatenate( datetime\year(datetime\today()),"-", datetime\month(datetime\today()),"-", subscriptionProfile.billingDueDate, " 00:00:00"); ifThen(status=="Open", ifThenElse(datetime\today() < dateEndDate, status="Overdue",status="Open"));
Any help is appreciated.

Comment