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
Pandetbaby
Frequent Visitor

I want to find the % of different categories

Hey!

I have made a column that have split the total number of rows into either Red or Green based on the value. 

 

Green / Red is a column with the function: Green/Red = IF ( Row >= 50 , "Green", "Red")

 

Then to get the Number of columns: Number of Green/Red = Count ( Green/Red )

 

and lastly

 

Function I am attempting is = SUM( Row )  / ( Number of Green/Red)

 

I now want to calculate what % of rows falls into each - how do I do this?

Thank you!

1 REPLY 1
Anonymous
Not applicable

@Pandetbaby If you are looking for percentage of each category in total Please use below measure

Measure = 
VAR _category = CALCULATE(SUM('Table'[Sales]),ALLEXCEPT('Table','Table'[GreenRed]))
VAR _total = CALCULATE(SUM('Table'[Sales]),ALL('Table'))
RETURN DIVIDE(_category,_total,0)

 

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.

Top Solution Authors