Forum Discussion
Anonymous
4 years agoNot applicable
count rows
Dear Friends i have table with thousands of rows as shown: i need to count the number of "MR Number" wherer MR number contains only Status = "Initial", for example in above MR 1322398 & 1321...
- 4 years ago
Anonymous , Try a new measure like
countx(filter(summarize(Table, Table[MR Number], "_cnt", count(Table[MR Number]), "_init", countx(filter(Table, Table[Status] = "Initial"),Table[MR Number])), [_cnt] =[_init]),[MR Number])
smpa01
4 years agoCommunity Champion
Anonymous
Measure =
CALCULATE (
COUNT ( tbl[Status] ),
FILTER ( VALUES ( tbl[Status] ), tbl[Status] = "INITIAL" )
)