Hi,
I am creating the report with standalone designer.
My sample datasource will be like this below,
Data Source
-----------
Name,QtyValue,DateTime
S001,100,2018-05-01
S001,200,2018-05-02
S001,300,2018-05-03
S001,50,2018-05-04
S001,250,2018-05-05
S001,100,2018-05-06
S002,200,2018-05-02
S002,30,2018-05-04
S002,100,2018-05-05
In my report group footer, I would like to display the
Maximum/Minimum Qtyvalue and the DateTime value for that maximum value.
I tried to use the expression
IIF(Fields.QtyValue = Max(Fields.QtyValue), Fields.DateTime, "")
It didn't work. Can you guys please advise me how to achieve.
Expected
---------
Name: S001
Max Min
Value Date Value Date
300 2018-05-03 50 2018-05-04
Actual
-------
Name: S001
Max Min
Value Date Value Date
300 50
Thanks in advance.