Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello
Hope you can help me. The first two columns below are my data. Each client manager as a minimum capacity of clients. I need to aggregate the total by client manager but the way I have the data the value repeats in several rows. This is because the data comes from the system. so when I try to sum the totals power BI sums the total but what I need is a unique value by client manager and then do the total. Any advice in how I can do that?
Client Manager | Min capacity of Clients | Power BI total | What I need is the unique value by client manager |
Anna | 30 |
|
|
Anna | 30 |
|
|
Anna | 30 | 90 | 30 |
Paul | 50 |
|
|
Paul | 50 |
|
|
Paul | 50 |
|
|
Paul | 50 |
|
|
Paul | 50 | 250 | 50 |
Siliva | 45 |
|
|
Siliva | 45 | 90 | 45 |
|
| 430 | 125 |
Solved! Go to Solution.
Hey @Anonymous ,
first I recommend to remove duplicate rows using Power Query.
If this is not possible, then the below measure creates what you are looking for:
Measure =
SUMX(
VALUES( 'Table'[Client Manager] )
, CALCULATE( AVERAGE('Table'[Min capacity of Clients] ) )
)
And a table visual:
Hopefully, this provides what you are looking for.
Regards,
Tom
Hey @Anonymous ,
select the measure in the fields list and adjust the formatting:
Hopefully, this provides what you are looking for.
Regards,
Tom
@TomMartens can I please ask you an easy one. How do I take out the decimals. I need only the value. I do appreciate your help!!! 😁
Hey @Anonymous ,
select the measure in the fields list and adjust the formatting:
Hopefully, this provides what you are looking for.
Regards,
Tom
Many thanks Tom!! It worked 😁
Hey @Anonymous ,
first I recommend to remove duplicate rows using Power Query.
If this is not possible, then the below measure creates what you are looking for:
Measure =
SUMX(
VALUES( 'Table'[Client Manager] )
, CALCULATE( AVERAGE('Table'[Min capacity of Clients] ) )
)
And a table visual:
Hopefully, this provides what you are looking for.
Regards,
Tom
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 22 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 44 | |
| 32 | |
| 18 | |
| 17 | |
| 17 |