Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Counting rows, with a filter if something contains certain text, not exact text

Hi all   I'm trying to countrows of a column that contain different regions.  My column looks similar to this:    [Region] ANZ ANZ, Americas ANZ, EMEA EMEA, Americas   I want to countrows (...
  • Zubair_Muhammad's avatar
    8 years ago

    Anonymous

     

    May be

     

    Measure =
    CALCULATE (
        COUNT ( Table1[Region] ),
        SEARCH ( "ANZ", Table1[Region], 1, 0 ) > 0
    )