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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Seer_Bug
Helper I
Helper I

DAX to count based wild card search

Hi All, 

Data looks like this :

Audit IDEmp NameFrontline Failuers
1ABCCredit not offered
2DEFDid not approach their Manager;System Probing;Reconfirming
3EFRNo Failure
4TGRLack of Authorisation
5RUJObjection handling;System Probing
6IKUDid not approach their Manager
7OLJSystem Probing
8OLICredit not offered;Objection handling
9TGRLack of Authorisation

 

looking for a result like this using DAX :

Frontline FailuresCount
Credit not offered2
Did not approach their Manager2
No Failure1
Lack of Authorisation2
Objection handling2
Did not approach their Manager2
System Probing3

Thanks

1 ACCEPTED SOLUTION
Payeras_BI
Solution Sage
Solution Sage

Hi @Seer_Bug ,

Payeras_BI_0-1612355815811.png

Payeras_BI_0-1612367013633.png

 

COUNT CONTAINSSTRING =
CALCULATE (
    COUNT ( 'Table'[Frontline Failuers] ),
    FILTER (
        ALL ( 'Table'[Frontline Failuers] ),
        CONTAINSSTRING (
            'Table'[Frontline Failuers],
            SELECTEDVALUE ( 'Search'[Frontline Failures] )
        )
    )
)

 

Payeras_BI_1-1612367059611.png

 

 

If this post answered your question, please mark it as a solution to help other users find useful content.
Kudos are another nice way to acknowledge those who tried to help you.

J. Payeras
Mallorca, Spain

View solution in original post

1 REPLY 1
Payeras_BI
Solution Sage
Solution Sage

Hi @Seer_Bug ,

Payeras_BI_0-1612355815811.png

Payeras_BI_0-1612367013633.png

 

COUNT CONTAINSSTRING =
CALCULATE (
    COUNT ( 'Table'[Frontline Failuers] ),
    FILTER (
        ALL ( 'Table'[Frontline Failuers] ),
        CONTAINSSTRING (
            'Table'[Frontline Failuers],
            SELECTEDVALUE ( 'Search'[Frontline Failures] )
        )
    )
)

 

Payeras_BI_1-1612367059611.png

 

 

If this post answered your question, please mark it as a solution to help other users find useful content.
Kudos are another nice way to acknowledge those who tried to help you.

J. Payeras
Mallorca, Spain

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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