The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
Solved! Go to Solution.
@Anonymous , Try using
calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )
@Anonymous , Try using
calculate(count(Table[Status]), filter(all(Table), Table[Status] in {"Open","Risk Extended", "Remidated - Review Pending" } ) )
Perfect, thank you so much!