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
EMILKDIT_2022
New Member

Percentage of value

I'm trying to produce the following, would anyone mind giving some inputs on how this can be done? 

Dataset: 

NameLocationPass?
CarlyNew YorkPASSED
CarstenSan Francisco PASSED
EmilyNew YorkNOT PASSED


What I'd like to present in Power BI: 

LocationPass % of location
New York50%
San Francisco100%

 

1 ACCEPTED SOLUTION
Jos_Woolley
Solution Sage
Solution Sage

Hi,

Create a new measure:

Pass % of location =
VAR Passed =
    CALCULATE(
        COUNTROWS( 'Table' ),
        'Table'[Pass?] = "PASSED"
    )
RETURN
    DIVIDE(
        Passed,
        COUNTROWS( 'Table' )
    )

which can then be placed in, for example, a Table Visual, alongside the Location field.

Regards

View solution in original post

1 REPLY 1
Jos_Woolley
Solution Sage
Solution Sage

Hi,

Create a new measure:

Pass % of location =
VAR Passed =
    CALCULATE(
        COUNTROWS( 'Table' ),
        'Table'[Pass?] = "PASSED"
    )
RETURN
    DIVIDE(
        Passed,
        COUNTROWS( 'Table' )
    )

which can then be placed in, for example, a Table Visual, alongside the Location field.

Regards

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.