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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Divide Count of one column measure by column value of another table

Hi Everyone,

 

I am try to divide the Count measure Count(Table1[City]) by the column value (Number) from another table for each country. I have joined Table1 and Table2 with 1 to Many connection.

 

Table1:

CountryCity
USANew York
USAMiami
USANew York
UKLondon
UKLondon

 

Table2:

CountryNumber
INDIA5
UK6
USA2

 

Measure:

count_city = Count(Table1[City]) ---> This gives me the count of the city

 

For Example lets consider UK and City London.

I want to achieve Count_City/6

 

Count_City is the count of city London from Table1 and 6 is coming from Table2.

 

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@Anonymous, try this measure:

 

Ratio =
VAR vCityCount =
    COUNT ( Table1[City] )
VAR vCurCountry =
    MAX ( Table1[Country] )
VAR vCountryTable =
    FILTER ( ALL ( Table2 ), Table2[Country] = vCurCountry )
VAR vCountryNumber =
    MAXX ( vCountryTable, Table2[Number] )
RETURN
    DIVIDE ( vCityCount, vCountryNumber )




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

In Table1, write this calculated column formula = RELATED('Table2'[Number]) and name the column as Number.  To your Table visual, drag Country from Table2 and City from Table1.  Write this measure

=countrows(Table1)/min(Table1[Number])

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
DataInsights
Super User
Super User

@Anonymous, try this measure:

 

Ratio =
VAR vCityCount =
    COUNT ( Table1[City] )
VAR vCurCountry =
    MAX ( Table1[Country] )
VAR vCountryTable =
    FILTER ( ALL ( Table2 ), Table2[Country] = vCurCountry )
VAR vCountryNumber =
    MAXX ( vCountryTable, Table2[Number] )
RETURN
    DIVIDE ( vCityCount, vCountryNumber )




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.