Forum Discussion
Anonymous
9 years agoNot applicable
Handling infinity value
Hello, I am currently using a measure to calculate Sales Rate. The calculation is as follows FactTable[X]/FactTable[Y]. The X and Y come from different Fact tables. If Y is not present for the co...
- Anonymous9 years ago
Hi,
Thanks for the reply.
I got a solution online before I came across your post. Refer below for the solution.
IFERROR( [Mesaure 1]/[Mesaure 2], BLANK() )where Mesaure 1 is Sum(FactTable[x])and Mesaure 2 is Sum(FactTable[y])
Found it in this blog- https://sqldusty.com/
Anonymous
7 years agoNot applicable
Found this alternative without getting 'Cannot load Visual Error', DIVIDE function
DIVIDE(numerator,denominator,0)
Reference: https://www.dutchdatadude.com/power-bi-pro-tip-divide-function/
I_am_not_robot1
3 years agoRegular Visitor
This is a better solution than the one that is posted as the solution. Thank you!