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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
jeffatkins79
Frequent Visitor

DAX measure for percent of combined string values in a column

Apologies if this is overly simple but I am new to DAX.  I am trying to calculate an escalation percentage as defined as (# of Escalated 2s + # of Escalated 3s) / (# of Assigned).  The data looks like:

 

Event Column

Assigned

Escalated 2

Assigned

Escalated 3

Assigned
Assigned

 

For the above data, the escalation percentage should be 50%. 

 

Thanks for your help

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @jeffatkins79 ,

You can try to use following measure to calculate percent of 'escalated' and 'assigned'.

Measure =
DIVIDE (
    COUNTROWS (
        FILTER (
            ALLSELECTED ( Table1 ),
            SEARCH ( "Escalated", [Event Column], 1, -1 ) > 0
        )
    ),
    COUNTROWS ( FILTER ( ALLSELECTED ( Table1 ), [Event Column] = "Assigned" ) )
)

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

HI @jeffatkins79 ,

You can try to use following measure to calculate percent of 'escalated' and 'assigned'.

Measure =
DIVIDE (
    COUNTROWS (
        FILTER (
            ALLSELECTED ( Table1 ),
            SEARCH ( "Escalated", [Event Column], 1, -1 ) > 0
        )
    ),
    COUNTROWS ( FILTER ( ALLSELECTED ( Table1 ), [Event Column] = "Assigned" ) )
)

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors