Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
i have my data structured in the following manner (this is just a simplified version of what my table looks like):
Month | Country | Score |
Jan | US | 5 |
Feb | US | 6 |
Jan | Canada | 7 |
Feb | Canada | 9 |
Jan | Germany | 4 |
Feb | Germany | 1 |
I'm trying to calculate, in a new column, the minimum score for each country. So, the result should look something like this:
Month | Country | Score | Country's Min Score |
Jan | US | 5 | 5 |
Feb | US | 6 | 5 |
Jan | Canada | 7 | 7 |
Feb | Canada | 9 | 7 |
Jan | Germany | 4 | 1 |
Feb | Germany | 1 | 1 |
Many thanks
Solved! Go to Solution.
Hi @sromondas
CALCULATE ( MIN ( 'Table'[Score] ), ALLEXCEPT ( 'Table', 'Table'[Month], 'Table'[Country] ) )
Hi @sromondas
CALCULATE ( MIN ( 'Table'[Score] ), ALLEXCEPT ( 'Table', 'Table'[Month], 'Table'[Country] ) )
Appreciate the quick response. thanks!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |