Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Dear all
I need assistance with a calculation involving goal and completed data, both of which are measurements.
I want to measure actual completions and incompletions (column D and E) for each program based on the following criteria:
If the completed number exceeds the goal number, only the goal number should be counted.
For example, in a particular case, the completion is calculated as 42, while the incompletion stands at 8.
Your guidance would be greatly appreciated.
Looking forward to your insights.Thanks
Solved! Go to Solution.
Hi @WWC2024 ,
Thank you for reaching out to us!
I tried to recreate it with my sampe data.Used below measures:
Hi @WWC2024 ,
Thank you for reaching out to us!
I tried to recreate it with my sampe data.Used below measures:
Dear Friend
total # in completions and incompletions are incorrect.
Since Goal and completed are measure, so I have tried the following dax and it works and wold like to share with you all.
1) get the goal exected adjust =
solve the "total row " is very interesting question. Believe many are facing the same problems.
Completion =
Sumx(
Values( table[program]),
Var goal =
Calculate( sum( table[goal]))
Var complete =
Calculate( sum( table[complete]))
Return
If( complete > goal, goal, complete)
Incomplete=
Completion =
Sumx(
Values( table[program]),
Var goal =
Calculate( sum( table[goal]))
Var completion =
[completion]
Return
goal - completion
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |