The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi Everyone, seek some help. i have a table of figures such as below. i intend to have a measure which would identify the tank with the highest receipt quantity. Thereafter i will use 'Card' to always display the tank with the highest value.
Solved! Go to Solution.
@nbff , Assume receipt is a measure , try a measure like
CALCULATE(max(Table[Tank]),TOPN(1,all(Table[Tank]),[Receipts ],DESC),VALUES(Table[Tank]))
refer video : https://www.youtube.com/watch?v=QIVEFp-QiOk
Hi @nbff ,
You can also try this to show Tank and Receipts together in a card:
1. If [Receipts (L)] is a Measure.
Tank with the highest value =
MAXX (
TOPN ( 1, ALLSELECTED ( 'YourTable'[Tank] ), [Receipts (L)], DESC ),
[Tank] & " - " & [Receipts (L)]
)
2. If [Receipts (L)] is a Column.
Tank with the highest value =
MAXX (
TOPN (
1,
SUMMARIZE (
'YourTable',
'YourTable'[Tank],
"Receipts_", SUM ( 'YourTable'[Receipts (L)] )
),
[Receipts_], DESC
),
[Tank] & "-" & [Receipts_]
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @nbff ,
You can also try this to show Tank and Receipts together in a card:
1. If [Receipts (L)] is a Measure.
Tank with the highest value =
MAXX (
TOPN ( 1, ALLSELECTED ( 'YourTable'[Tank] ), [Receipts (L)], DESC ),
[Tank] & " - " & [Receipts (L)]
)
2. If [Receipts (L)] is a Column.
Tank with the highest value =
MAXX (
TOPN (
1,
SUMMARIZE (
'YourTable',
'YourTable'[Tank],
"Receipts_", SUM ( 'YourTable'[Receipts (L)] )
),
[Receipts_], DESC
),
[Tank] & "-" & [Receipts_]
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@nbff , Assume receipt is a measure , try a measure like
CALCULATE(max(Table[Tank]),TOPN(1,all(Table[Tank]),[Receipts ],DESC),VALUES(Table[Tank]))
refer video : https://www.youtube.com/watch?v=QIVEFp-QiOk
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
123 | |
85 | |
77 | |
55 | |
49 |
User | Count |
---|---|
135 | |
127 | |
78 | |
64 | |
63 |