Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用水晶报告,我正在使用日期参数。在某些情况下,我不会从数据库中返回任何日期。系统正在跟踪默认日期 1899 年 12 月 30 日。所以在这种情况下,我想用空白日期绑定报告。需要用空白日期显示所有其他字段。请为此提供帮助
提前致谢
在选择查询中使用此格式
select isnull(dateColumn,''),column2 from table
在添加到报告的字段中,转到“格式化对象”并选中“抑制”复选框,然后通过单击该复选框右侧的底部添加此公式:
{DATE_FIELD} = Date (1899,12,30)
其中 DATE_FIELD 是对象的字段。
当日期等于 1899/12/30 时,这将抑制该字段。