Forum Discussion
Duda with chart based on display table
- Anonymous1 year ago
Hi, Syndicate_Admin
Based on your information, I create a sample table:
You can create a new measure, try the following dax expression:
MaxScorePerDistrictMeasure = CALCULATE( MIN('Table'[PUNTOS]), ALLEXCEPT('Table', 'Table'[Country], 'Table'[City], 'Table'[District]) )Then create visuals and put fields in them, here is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Syndicate_Admin
Based on your information, I create a sample table:
You can create a new measure, try the following dax expression:
MaxScorePerDistrictMeasure =
CALCULATE(
MIN('Table'[PUNTOS]),
ALLEXCEPT('Table', 'Table'[Country], 'Table'[City], 'Table'[District])
)
Then create visuals and put fields in them, here is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.