我的报告中有一个To_date
参数,我必须将最大日期值从两个包含日期的数据集传递到To_Date
参数。如何编写表达式来检索最大日期?
答案 0 :(得分:0)
您可以尝试使用以下表达式
=IIF(MAX(Fields!PaymentDate.Value, "dsMain") > MAX(Fields!OrderCreatedDate.Value, "dsMain")
, MAX(Fields!PaymentDate.Value, "dsMain") , MAX(Fields!OrderCreatedDate.Value, "dsMain"))
感谢。