我目前正在使用 Crystal Reports XI,并尝试制作一个公式来突出显示当前日期时间 72 小时内的发货日期。我该如何制作一个可以执行该功能的公式?
我的猜测是,但我不知道该怎么做
{TableName.ShipDate} <= CurrentDatetime - 72 Hours
then crYellow
答案1
IF {Table.ShipDate} <= CurrentDateTime
then crRed
ELSE
IF ({Table.ShipDate} - 3) <= CurrentDateTime
then crYellow
ELSE
crNoColor;