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
Solved! Go to Solution.
Hi,
Your dax measure looks okay to me. are you passing the right measures? if yes, try this workaround:
Budget Variance % =
VAR varResult =
IF(
[Financial value Var] < 0 && (ISBLANK([Financial Value2]) || [Financial Value2] = 0),
0,
DIVIDE([Financial value Var], [Financial Value2], 0)
)
RETURN
IF(
ABS(varResult) > 1E10 || ABS(varResult) < 1E-10,
0,
varResult
)
ABS(varResult) > 1E10 || ABS(varResult) < 1E-10: This checks if the absolute value of varResult is greater than 10^{10} (a very large number) or less than 10^{-10} (a very small number). change the exponent value accordingly.
Hi,
This simplified measure should work
Budget Variance % = IF([Financial value Var] < 0,0,DIVIDE([Financial value Var], [Financial Value2],0))
Hope this helps.
Hi,
Thanks for the solution @Ashish_Mathur and @Shravan133 offered, and i want to offer some more information for user to refer to.
hello @Pooja_Dasani_98 ,
Please check that if your data type of the [Financial Value2] measure is Decimal number, but you don't keep one or two decimal places, then it will dispaly 0, but in fact, there are numbers after the decimal point, in this situation , it will return the value, you can refer my sample.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you @Ashish_Mathur , and @Shravan133 both of the solutions worked.
@v-xinruzhu-msft , thank you for this info.
Hi,
This simplified measure should work
Budget Variance % = IF([Financial value Var] < 0,0,DIVIDE([Financial value Var], [Financial Value2],0))
Hope this helps.
Hi,
Your dax measure looks okay to me. are you passing the right measures? if yes, try this workaround:
Budget Variance % =
VAR varResult =
IF(
[Financial value Var] < 0 && (ISBLANK([Financial Value2]) || [Financial Value2] = 0),
0,
DIVIDE([Financial value Var], [Financial Value2], 0)
)
RETURN
IF(
ABS(varResult) > 1E10 || ABS(varResult) < 1E-10,
0,
varResult
)
ABS(varResult) > 1E10 || ABS(varResult) < 1E-10: This checks if the absolute value of varResult is greater than 10^{10} (a very large number) or less than 10^{-10} (a very small number). change the exponent value accordingly.
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.
User | Count |
---|---|
109 | |
80 | |
71 | |
51 | |
50 |
User | Count |
---|---|
123 | |
119 | |
76 | |
64 | |
60 |