Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hi All,
Data looks like this :
Audit ID | Emp Name | Frontline Failuers |
1 | ABC | Credit not offered |
2 | DEF | Did not approach their Manager;System Probing;Reconfirming |
3 | EFR | No Failure |
4 | TGR | Lack of Authorisation |
5 | RUJ | Objection handling;System Probing |
6 | IKU | Did not approach their Manager |
7 | OLJ | System Probing |
8 | OLI | Credit not offered;Objection handling |
9 | TGR | Lack of Authorisation |
looking for a result like this using DAX :
Frontline Failures | Count |
Credit not offered | 2 |
Did not approach their Manager | 2 |
No Failure | 1 |
Lack of Authorisation | 2 |
Objection handling | 2 |
Did not approach their Manager | 2 |
System Probing | 3 |
Thanks
Solved! Go to Solution.
Hi @Seer_Bug ,
COUNT CONTAINSSTRING =
CALCULATE (
COUNT ( 'Table'[Frontline Failuers] ),
FILTER (
ALL ( 'Table'[Frontline Failuers] ),
CONTAINSSTRING (
'Table'[Frontline Failuers],
SELECTEDVALUE ( 'Search'[Frontline Failures] )
)
)
)
Hi @Seer_Bug ,
COUNT CONTAINSSTRING =
CALCULATE (
COUNT ( 'Table'[Frontline Failuers] ),
FILTER (
ALL ( 'Table'[Frontline Failuers] ),
CONTAINSSTRING (
'Table'[Frontline Failuers],
SELECTEDVALUE ( 'Search'[Frontline Failures] )
)
)
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |