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
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!
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.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
20 | |
18 | |
18 | |
14 | |
13 |
User | Count |
---|---|
38 | |
31 | |
22 | |
20 | |
18 |