Forum Discussion
Anonymous
8 years agoNot applicable
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 (...
- 8 years ago
Anonymous
May be
Measure = CALCULATE ( COUNT ( Table1[Region] ), SEARCH ( "ANZ", Table1[Region], 1, 0 ) > 0 )
Zubair_Muhammad
Community Champion
8 years agoAnonymous
May be
Measure =
CALCULATE (
COUNT ( Table1[Region] ),
SEARCH ( "ANZ", Table1[Region], 1, 0 ) > 0
)goutham_yp
7 years agoRegular Visitor
Simple and worked!