Forum Discussion
Anonymous
5 years agoNot applicable
Filters
Hi , I am new to PowerBI. I have a question related to filters. I want to calulate the count of Id's only if my Status column has 'Failed' as its value. If 'Failed' value is not flowing into the rep...
- 5 years ago
Anonymous , Try a measure like
calculate(count(Table[Id]), filter(Table, Table[Status] ="Failed"))
or in your existing measure add +0
example
count(Table[Id]) +0
amitchandak
5 years agoSuper User
Anonymous , Try a measure like
calculate(count(Table[Id]), filter(Table, Table[Status] ="Failed"))
or in your existing measure add +0
example
count(Table[Id]) +0