Forum Discussion
Mgg
Helper I
4 years agocount 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
Super User
4 years agoHi, 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
Helper I
4 years agoI'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 ago
Super User
Hi, Mgg ,
CALCULATE( COUNTROWS('Table'), CONTAINSSTRING('Table'[Company], "See") && NOT (ISBLANK('Table'[Prj])) )