Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am analyzing driver miles within a given date. Basic data I have is driverID, Date, Miles
I am using first sorted value to see on what date the most miles were driven:
firstsortedvalue([Date], -Aggr(sum(Miles),[Date]))
What I want to display in a separate object is what the sum(Miles) is for the Date that is returned from the firstsortedvalue. Help?
do you mean something like max(Aggr(sum(Miles),[Date])) ?
do you mean something like max(Aggr(sum(Miles),[Date])) ?
That did it. I was trying to re-use the firstsorted expression but should have thought simpler. Thanks!