I am trying to compare a custom data field (Requested Delivery Date) to
the Actual Completion Date to be able to label tasks Early, Late, or On
Time in a report column. Among the expressions/text blocks I have tried
are the following:
displayname=Timing1textmode=truevalueexpression=IF({actualCompletionDate}={DE:Requested
Delivery Date},"On Time",IF({DE:Requested Delivery
Date}>{actualCompletionDate},"Early",IF({actualCompletionDate}>{DE:Requested
Delivery Date},"Late","")))valueformat=HTML
displ...