Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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

  • Anonymous , Try using

    calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )

    • Anonymous's avatar
      Anonymous
      Not applicable

      Perfect, thank you so much!