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.
Say you have a table like the below where max margin and min margin represent the max and min of margin within the existing table:
Country | Margin | Max Margin | Min Margin |
Germany | 50 | 80 | 40 |
UK | 70 | 80 | 40 |
USA | 80 | 80 | 40 |
Japan | 55 | 80 | 40 |
China | 40 | 80 | 40 |
Is there a way to allow users to create some kind of grouping, like the "Region" column below, where max and min margin now calculate within the group?
Country | Region | Margin | Max Margin | Min Margin |
Germany | 1 | 50 | 70 | 50 |
UK | 1 | 70 | 70 | 50 |
USA | 2 | 80 | 80 | 80 |
Japan | 3 | 55 | 55 | 40 |
China | 3 | 40 | 55 | 40 |
I probably should've been more clear, the Region grouping does not exist in the source data. They want to be able to assign the groupings on their own and then have the calculations change.
@Anonymous
Unfortunately, Power Bi does no have artificial intelligence features at least for now.
Hi,
Please check the below picture and the attached pbix file.
It is for creating new columns in the table.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question.
Max Margin=CALCULATE(MAX(Table[Margin]),ALL(Table[Country]))
Min Margin=CALCULATE(MIN(Table[Margin]),ALL(Table[Country]))
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 |
---|---|
14 | |
11 | |
10 | |
10 | |
9 |
User | Count |
---|---|
18 | |
13 | |
12 | |
11 | |
8 |