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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
chayanupadhyay
Helper III
Helper III

Calculating Ratio as per category for each project

Hi All,

 

I need to calculte ratio of each category for every project, PFB the sample data:

 

ProjIDCategory
1A
1B
1A
2A
2B

 

So the ratio for project 1 for both the category is 66:33  since A will be 2/3  and B will be 1/3

for Proj 2 the ratio will be 50:50

 

I need to use this ratio for other calculation so we need to store this ration in below table:

 

Proj IDA RatioB Ratio
1  
2  

 

both tables are join on Proj ID column.

 

Please let me know if you need more clarification on above scenario.

Thank you for the help and support.

 

Regards,

Chayan Upadhyay

 

2 REPLIES 2
TeigeGao
Solution Sage
Solution Sage

Hi @chayanupadhyay ,

Please refer to the following DAX query: 

Measure =
VAR a =
    DIVIDE (
        COUNTROWS ( 'Table' ),
        CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table'[Category] ) )
    )
RETURN
    FLOOR ( a * 100, 1 ) & ":"
        & FLOOR ( ( 1 - a ) * 100, 1 )

The result will like: 

PBIDesktop_hcfx7yFyXJ.png

Best Regards,

Teige

Thank you @TeigeGao 🙂

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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