Forum Discussion
How to display maximum value on card
- 5 years ago
Hi Anonymous
You need to provide some more detail. How do you determine the most visited gate exactly?
Try something like this:
Measure = CALCULATE ( DISTINCT ( Table1[Gate_Handheld] ), TOPN ( 1, DISTINCT ( Table1[Gate_Handheld] ), CALCULATE ( COUNT ( Table1[Gate_Handheld] ) ), DESC ) )You'll probably have to update the CALCULATE ( COUNT ( Table1[Gate_Handheld] ) ) part to adapt it to your needs
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi Anonymous
You need to provide some more detail. How do you determine the most visited gate exactly?
Try something like this:
Measure =
CALCULATE (
DISTINCT ( Table1[Gate_Handheld] ),
TOPN (
1,
DISTINCT ( Table1[Gate_Handheld] ),
CALCULATE ( COUNT ( Table1[Gate_Handheld] ) ), DESC
)
)
You'll probably have to update the CALCULATE ( COUNT ( Table1[Gate_Handheld] ) ) part to adapt it to your needs
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers