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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
PDRTXRA
Helper I
Helper I

Distinctcount

Hello.

I have two tables. One with clients, other with lines of consumption.

Clients table:

Client ID | Name

1             John
2             Mark
3             Sarah

Consumption table:

Consumption ID | Client ID | Partner 

1                                 2             ABC

2                                 2             DEF

3                                 1             ABC

4                                 3             ABC

5                                 3             GHI

6                                 3             JKL

 

I want to create a calculated column on the clients table to have the number of different partners on where they have consumed.

I thought a simple 'New Column = DISTINCTCOUNT('Consumption'[Partner]) would work but it just appears the total value of different partners in the table.

 

So, I want:

 

Client ID | Name | # Partners

1             John            1
2             Mark            2
3             Sarah           3

 

After that, I need the average value of partners for all clients. If there's a simpler way to get to it, I'd love to hear it aswell. 

 

Thank you.

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@PDRTXRA , Create a new measure

 

averageX(Values(Clients[Client ID]) , calculate(DISTINCTCOUNT('Consumption'[Partner])) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@PDRTXRA , Create a new measure

 

averageX(Values(Clients[Client ID]) , calculate(DISTINCTCOUNT('Consumption'[Partner])) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors