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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
hi,
i have a column called KPI and it has a list of matrics. example
Total Moves
Essential Moves
etc.
another column has the KPI Value for these metrics
i need to create a new measure called Quality Time with a formula ( total moves - essential moves/total moves)
how can i do this? Please help.
Solved! Go to Solution.
can you share sample data?
you can follow the guide here:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
You may refer to the measure below.
Measure = VAR t = CALCULATE ( SUM ( Table1[Value] ), Table1[KPI] = "Total Moves" ) VAR e = CALCULATE ( SUM ( Table1[Value] ), Table1[KPI] = "Essential Moves" ) RETURN DIVIDE ( t - e, t )
You may refer to the measure below.
Measure = VAR t = CALCULATE ( SUM ( Table1[Value] ), Table1[KPI] = "Total Moves" ) VAR e = CALCULATE ( SUM ( Table1[Value] ), Table1[KPI] = "Essential Moves" ) RETURN DIVIDE ( t - e, t )
can you share sample data?
you can follow the guide here:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.