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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
marcss44
Helper I
Helper I

Getting some measures from Count Distinct

Hi friends!

I've got a Matrix and i need to get the result of divide one columm by another (Both are distinct count fields). For example:

 

marcss44_0-1721623227983.png

I need to get the result of 24116/1290 at %.

And, finally I need to take this too:

marcss44_1-1721623286100.png

343456 divide by 1290.

How can I do it?

I've tried to Add a column but i can't put the column name.

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey @marcss44 ,

 

you have to create two base measures like so:

M1 = DISTINCTCOUNT(<'table'[column1]>)

 and this

M2 = DISTINCTCOUNT(<'table'[column2]>)

 Based on this you can can create a third measure that divides the measures M1 and M2 rowwise like so:

M3 = DIVIDE( [M1], [M2] )

 And the 4th measure divides the M2 value by the Total value of M1:

M4 = DIVIDE( [M2] , CALCULATE( [M1] , ALL( <'thetableusedonrows'[rowheader] ) ) )

Then you can use all 4 measures in the value well of the Matrix visual.

 

Hopefully, this helps to tackle your challenge.

 

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

4 REPLIES 4
TomMartens
Super User
Super User

Hey @marcss44 ,

 

you have to create two base measures like so:

M1 = DISTINCTCOUNT(<'table'[column1]>)

 and this

M2 = DISTINCTCOUNT(<'table'[column2]>)

 Based on this you can can create a third measure that divides the measures M1 and M2 rowwise like so:

M3 = DIVIDE( [M1], [M2] )

 And the 4th measure divides the M2 value by the Total value of M1:

M4 = DIVIDE( [M2] , CALCULATE( [M1] , ALL( <'thetableusedonrows'[rowheader] ) ) )

Then you can use all 4 measures in the value well of the Matrix visual.

 

Hopefully, this helps to tackle your challenge.

 

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

Hi again friend! How can I use row headers and obtain the division correctly?

Now I've added new row header and the calculate filed is not working:

marcss44_0-1721722956727.png

In green the new row header

Thank you very much!

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.