我正在使用crystal XI,我想运行一个报告,其中允许日期在报告运行时的最后6个小时内。我不知道如何计算这个。
答案 0 :(得分:2)
将以下内容添加到报告的记录选择公式中:
//show all admission dates that have occurred more recently than 6 hours
//before the current date/time
//replace {table.field} w/ correct value
{table.field} >= DateAdd("h", -6, DataDate + DataTime)