Forum Discussion
jahnabi123
5 years agoNew Member
Dax calculation for DIVIDE
I am facing a very strange issue. I have 2 measures both data type decimal. I am dividing one by the other. Now, even if both the measures have the same value, the result is not 1. This is the dax:...
v-xicai
5 years agoCommunity Support
Hi jahnabi123 ,
There may be a tiny gap between the two measures, so you may try to limit the decimal places for the measures.
Household factor =
DIVIDE (
ROUND ( [Total Households], 2 ),
ROUND ( [Total Household cust], 2 ),
0
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.