Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Anybody can help me, how to get Date and Time from Max Transaction?
DAY | TIME | TRX |
1 | 10:00 | 4 |
1 | 10:40 | 7 |
1 | 10:55 | 10 |
1 | 11:30 | 20 |
1 | 16:00 | 15 |
Thanks
Darlie
Maybe like this: FirstSortedValue({<TIME={'>10:00<10:55'}>}TIME, -TRX)
FirstSortedValue(DAY, -TRX)
FirstSortedValue(TIME, -TRX)
Hi Thanks for your Help, Could you please tell me how get the Time from Max Transaction that happen in (time 10:00 - 10:55)
Thanks n Regards
Maybe like this: FirstSortedValue({<TIME={'>10:00<10:55'}>}TIME, -TRX)
Thanks So Much.
May I ask you one more thing, what is the correct Syntax if I want to add AVG on TRX?
the result is null : FirstSortedValue({<TIME={'>10:00<10:55'}>}TIME, -(Avg(TRX))
Thanks
Find the Avg(TRX) based on what dimension here?
Hi Sunny,
Sorry, here is the detail : I need to know the DAY of Max AVG (ESAP).
For Example, The Max Avg is on Day 9
Thanks
You want to know the day of max average? may be this:
FirstSortedValue(DAY, -Aggr(Avg(TRX), DAY))
It' Work, Thanks For your Help