March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |