Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
[Edited please see sample file here]
Hello! I'm using this measure to get the item that received the most and least ordered:
Solved! Go to Solution.
Hi @dataaanana ,
We can create measures.
rank1 = RANKX(ALL(Menu),[Items Sold],,DESC)
rank2 = RANKX(ALL(Menu),[Items Sold],,ASC)
the third item(least) = CALCULATE(MAX('Menu'[item_name]),FILTER(ALL('Menu'),[rank2]=3))
the third item(most) =
CALCULATE(MAX('Menu'[item_name]),FILTER(ALL('Menu'),[rank1]=3))
Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dataaanana ,
We can create measures.
rank1 = RANKX(ALL(Menu),[Items Sold],,DESC)
rank2 = RANKX(ALL(Menu),[Items Sold],,ASC)
the third item(least) = CALCULATE(MAX('Menu'[item_name]),FILTER(ALL('Menu'),[rank2]=3))
the third item(most) =
CALCULATE(MAX('Menu'[item_name]),FILTER(ALL('Menu'),[rank1]=3))
Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |