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 Level". Any ideas? I also tried using CountRows() instead of Count(), but I'm still getting the same results.
Anonymous , Try using
calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )
2 Replies
- amitchandakSuper User
Anonymous , Try using
calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )
- AnonymousNot applicable
Perfect, thank you so much!