日時または空白の値を持つ DiscontinuedDate 列があります。という表現を使った
FormatDateTime(Fields!DiscontinuedDate.Value, DateFormat.ShortDate)
日時を単なる日付として表示する場合、値が空白の場合、「文字列 "" から型 'Date' への変換は有効ではありません。
だから私は以下のような IIF 式を使用しようとしてきました:
=IIF(Fields!DiscontinuedDate.Value is "", "", FormatDateTime(Fields!DiscontinuedDate.Value, DateFormat.ShortDate))
いくつかのバリエーションを試しましたが、すべて同じエラーが返されます。何か案は?
ありがとう、
アダム