Forum Discussion
TaufikMaggangka
Helper II
5 years agoCount specific text in one column with direct query mode
Hi all, I need help to create measure to count number of specific text that contains in one column, please note that I using direct query mode on connecting to database. Here my illustration, I...
- 5 years ago
You can create a measure with below code
word_count = LEN ( MAX ( 'Table (5)'[Cough Fever] ) ) - LEN ( SUBSTITUTE ( MAX ( 'Table (5)'[Cough Fever] ), " ", "" ) ) + 1
Samarth_18
Community Champion
5 years agoYou can create a measure with below code
word_count =
LEN ( MAX ( 'Table (5)'[Cough Fever] ) )
- LEN ( SUBSTITUTE ( MAX ( 'Table (5)'[Cough Fever] ), " ", "" ) ) + 1
TaufikMaggangka
Helper II
5 years agoBasically it count the space but it works.
Thank you Samarth_18