Forum Discussion
Sheref_Morad
4 years agoFrequent Visitor
Divide Function
I am trying to create a calculated column in the customer table for predicted customer incomes using the divide Function and gives me a Blank column, although the formula is correct
- 4 years ago
Sheref_Morad
Here is your fil with the solution https://www.dropbox.com/t/CChylr4UPd28RtxH
Measures are automatically wrapped with CALCULATE which forces context transition. On the other hand using the formulas directly will be extremely complicated. Therefore, use can do the following:Predicted Income = Divide ( RELATED ( 'Regression Table'[y] ) - CALCULATE ( [b], ALL ( 'Regression Table' ) ), CALCULATE ( [m], ALL ( 'Regression Table' ) ) )This shall solve your problem.
mem
3 years agoNew Member
Hello, I have the same problem. Even though I placed the correct formula the values are wrong.