Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello everybody,
I am currently struggling with something that seems very simple;
I have within my table of data a column called "Title" in with each row contains one value among "Mr", "Ms", "Sir", "Mme", ....(there is many different values because the data is in different languages). My objective is to count all "titles" corresponding to male and all "titles" corresponding to female in order to get a final overview like "40% Men / 60% Women".
Is there anyone that could help me with that ?
Thank you all !
Solved! Go to Solution.
Hi @Chrisblanc ,
I'd like to suggest you create a mapping table for these descriptions.
For example:
Name, Desc Man,Mr Man,Sir Woman,Ms Woman,Mrs
Then you can use name field of above table as category to create a visual and write a measure to compare with table who stored different descriptions and get the count.
Compare =
VAR tagged =
ADDCOLUMNS (
'Sample',
"Type", CALCULATE (
FIRSTNONBLANK ( Mapping[Name], [Name] ),
FILTER ( ALL ( Mapping ), SEARCH ( Mapping[Desc], 'Sample'[Text], 1, -1 ) > 0 )
)
)
RETURN
COUNTROWS ( FILTER ( tagged, [Type] IN VALUES ( Mapping[Name] ) ) )
Regards,
Xiaoxin Sheng
Hi @Chrisblanc ,
I'd like to suggest you create a mapping table for these descriptions.
For example:
Name, Desc Man,Mr Man,Sir Woman,Ms Woman,Mrs
Then you can use name field of above table as category to create a visual and write a measure to compare with table who stored different descriptions and get the count.
Compare =
VAR tagged =
ADDCOLUMNS (
'Sample',
"Type", CALCULATE (
FIRSTNONBLANK ( Mapping[Name], [Name] ),
FILTER ( ALL ( Mapping ), SEARCH ( Mapping[Desc], 'Sample'[Text], 1, -1 ) > 0 )
)
)
RETURN
COUNTROWS ( FILTER ( tagged, [Type] IN VALUES ( Mapping[Name] ) ) )
Regards,
Xiaoxin Sheng
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |