Forum Discussion
Mgg
4 years agoHelper I
count filtered text line
Hi All, I need to count the lines with specific word in a column containgingdiferents words. I though to do something like: data1 = countx ( filter( table, table[column] = "*wordtofind*"), [colum...
- 4 years ago
Hi, Mgg
use something like this:Activated = COUNTROWS(FILTER('Table', CONTAINSSTRING('Table'[Company], "See")))This will look for "See" in Column "Company" in table "Table".
vojtechsima
4 years agoSuper User
Hi, Mgg
use something like this:
Activated = COUNTROWS(FILTER('Table', CONTAINSSTRING('Table'[Company], "See")))
This will look for "See" in Column "Company" in table "Table".
Mgg
4 years agoHelper I
I'm not sure is exactly what I need.
Looking in the following table I need to count the number of Prj if in column type there is the word see ...also if combine with other.
The result should be 3....so the yellow onr 🙂
Thx
- vojtechsima4 years agoSuper User
Hi, Mgg ,
CALCULATE( COUNTROWS('Table'), CONTAINSSTRING('Table'[Company], "See") && NOT (ISBLANK('Table'[Prj])) )