日期时间计算是6小时前

时间:2011-09-14 20:40:27

标签: datetime crystal-reports reporting crystal-reports-xi

我正在使用crystal XI,我想运行一个报告,其中允许日期在报告运行时的最后6个小时内。我不知道如何计算这个。

1 个答案:

答案 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)