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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. 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
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 54 | |
| 42 | |
| 30 | |
| 24 |