我有一份报告,我需要从日期时间列中删除时间。我发现这个表达式可以工作,但它会将所有空值更改为 '1/1/0001'
=FormatDateTime(Fields!Temperature_Control_Inspection_Date.Value,DateFormat.ShortDate)
我已经尝试使用下面的表达式来查找空值,但它似乎不起作用。
=IIF(Fields!Temperature_Control_Inspection_Date is nothing, nothing, FormatDateTime(Fields!Temperature_Control_Inspection_Date.Value,DateFormat.ShortDate))
如何仅显示 DateTime 列中的日期,而不将所有空值都替换为“1/1/0001”?
下面将起作用:
以上将空日期为空白。此外,它会删除时间,只为您提供日期部分。