Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to find max value in a chart expression.The field I used max[Fuel Surveyed] on expression.BUt it shows garbage after expression "Fuel Surveyed" and not showing the max values in report.Any solution
i did changes to my qvw only.but how can u access it if you dont have the required qvd s
shruthibk HOW CAN I SEND THE QVW::HERE THERE IS NO SUCH OPTION::
Use advanced editor option and the attach
Use the advanced editor, right side you will find attach icon and share the expected output as well
Please find the attachment
try this
What's wrong with that? The Max() expression is working fine. Which result do you expect instead?
Not sure what you are trying to get. If you need to get the max value irrespective of the dimensions, try
= Max( Total [Fuel per last Noon])
The problem is I just want to see the records corresponding to the maximum value of the fuel per last noon..but it shows all
Then you need to use TOTAL as Tresesco mentions below, or even Aggr() to get one value based on whatever the field for "value of the fuel per last noon" it is instead of the Max() per line, as you are currently getting.
Max(TOTAL <[Last Noon]> [Fuel surveyed])
or
Aggr(Max([Fuel surveyed]), [Last Noon])
or even
FirstSortedValue(Max([Fuel surveyed]), -[Last Noon]) // the "-" before the date field means descending order / most recent first