Forum Discussion
Anonymous
3 years agoNot applicable
I can't get ALL() function to work, Help!
I've created a measure "RowCount" that I want to use as a denomintor in a calculation. I thought the ALL() function would ignore the filter for "Risk Level", but it's still showing the total by "Risk...
- 3 years ago
Anonymous , Try using
calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )
amitchandak
3 years agoSuper User
Anonymous , Try using
calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )
Anonymous
3 years agoNot applicable
Perfect, thank you so much!