Forum Discussion
COUNTROW based on words
- 7 years ago
Hi gazzo1967
Providing that you have only two abriviations of Watch Commander ( A, B ), you could use the DAX expression below.WatchCount = CALCULATE( COUNTROWS( 'User Information List' ), 'User Information List'[JobTitle] IN { "Watch Commander A", "Watch Commander B" } )This will give you the below result.
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me. - 7 years ago
Hi gazzo1967
The below measure will search for "Watch Commander" within a string.WatchCount = CALCULATE( COUNTROWS( 'User Information List' ), IFERROR( SEARCH( "Watch Commander", 'User Information List'[JobTitle] ), 0 ) > 0 )Let me know if this is what you are looking for.if not, please can you prepare a sample that illustrates the data + outcome.Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
Hi
I have a Jobtitle column that has multiple Jobtitles (from the user infomation list on sharepoint)
Jobtiltes could be
Watch Commander A
Watch Commander B
Crew Commander
etc
I would like to get the total count of Watch Commanders from the column
So i can use it as a comparison
Gary
Hi gazzo1967
Providing that you have only two abriviations of Watch Commander ( A, B ), you could use the DAX expression below.
WatchCount =
CALCULATE(
COUNTROWS( 'User Information List' ),
'User Information List'[JobTitle] IN { "Watch Commander A", "Watch Commander B" }
)This will give you the below result.
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
- Mariusz7 years ago
Community Champion
- gazzo19677 years ago
Helper III
Thank you for responding again.
I am creating a new measure and pasting the code but when i then 'drag'
Jobtitl field - ID - WatcCount i have no figures
What im after is
Count how many times Watch Commader appears in the column Jobtitle
Jobtitle is populated with approx 600 different titles.
Sorry if i didn't make it clearer :(
Again i appreciate you time and help
Gary