I.e. any date input is less than or greater than Today
Code: Select all
GetDate>vdate
Let>askdate=14/02/2016
if>askdate>vdate
mdl>greater than todays
else
mdl>lesser than todays
endif
Moderators: Dorian (MJT support), JRL
Code: Select all
GetDate>vdate
Let>askdate=14/02/2016
if>askdate>vdate
mdl>greater than todays
else
mdl>lesser than todays
endif
Code: Select all
GetDate>vdate
Let>askdate=14/07/2011
VBEval>DateDiff("d","%vdate%","%askdate%"),daysDiff
If>daysDiff<0
MessageModal>%askdate% is earlier than %vdate% (%daysDiff% days)
Else
If>daysDiff>0
MessageModal>%askdate% is later than %vdate% (+%daysDiff% days)
Else
MessageModal>%askdate% = %vdate%
Endif
Endif