Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Simple count but with multiple variables in the column

Hey guys so my issue is that I have a table of lets say 3 counties A, B and C. And another table that has a row a column of "Contries for" but in this table you could have more than one contry listed...
  • Zubair_Muhammad's avatar
    7 years ago

    Anonymous 

     

    Try this MEASURE

    Measure =
    COUNTROWS (
        FILTER (
            Table2,
            SEARCH ( SELECTEDVALUE ( Table1[Countries] ), [Countries For], 1, 0 ) > 0
        )
    )