The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
i’ve got a problem with a measure which should only consider positive values from a target-actual comparison:
Measure =
(SUMX (
FILTER (Job, Plan[BudgetControl-Delta] > 0),
Plan[BudgetControl-Delta]
) )
So the measure replaces negative values with blanks. But unfortunately in total it seems that the measure also includes the negative values:
Any ideas, how to improve the measure?
Thank you
Chris
Solved! Go to Solution.
Hi @Chris_23
Your measure looks good except that the first table parameter should be 'Plan' rather than 'Job' I think.
Measure =
SUMX (
FILTER (Plan, Plan[BudgetControl-Delta] > 0),
Plan[BudgetControl-Delta]
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Chris_23
Your measure looks good except that the first table parameter should be 'Plan' rather than 'Job' I think.
Measure =
SUMX (
FILTER (Plan, Plan[BudgetControl-Delta] > 0),
Plan[BudgetControl-Delta]
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
80 | |
78 | |
43 | |
37 |
User | Count |
---|---|
157 | |
112 | |
64 | |
60 | |
54 |