Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I need to get the Pass % and Execution %, how to create new measure for this?
Solved! Go to Solution.
Will return all percentages , perhaps on a card?
% Total =
VAR _A =
CALCULATE(
COUNTA('Table'[Status])
)
VAR _B =
CALCULATE(COUNTA( 'Table'[Status] ), ALL( 'Table' ) )
RETURN
_A / _B
Will return all percentages , perhaps on a card?
% Total =
VAR _A =
CALCULATE(
COUNTA('Table'[Status])
)
VAR _B =
CALCULATE(COUNTA( 'Table'[Status] ), ALL( 'Table' ) )
RETURN
_A / _B
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |