Forum Discussion

Mgg's avatar
Mgg
Helper I
4 years ago
Solved

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...
  • vojtechsima's avatar
    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".