Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Erika16
Helper II
Helper II

Unique values

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

2 ACCEPTED SOLUTIONS
TomMartens
Super User
Super User

Hey @Erika16 ,

 

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:

image.png

 

 

 

Hopefully, this provides what you are looking for.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

Hey @Erika16 ,

 

select the measure in the fields list and adjust the formatting:
image.png
Hopefully, this provides what you are looking for.

 

Regards,
Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

5 REPLIES 5
Erika16
Helper II
Helper II

@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 @Erika16 ,

 

select the measure in the fields list and adjust the formatting:
image.png
Hopefully, this provides what you are looking for.

 

Regards,
Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

I very much appreciate your help @TomMartens  😀

Erika16
Helper II
Helper II

Many thanks Tom!! It worked 😁

TomMartens
Super User
Super User

Hey @Erika16 ,

 

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:

image.png

 

 

 

Hopefully, this provides what you are looking for.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.