Forum Discussion
Anonymous
3 years agoNot applicable
Creating an Updating Variable
Hello, I am trying to create a column that subtractrs from the previous calculated number (similar to an updating variable). I am getting confused on the DAX code. Currently I have tried this b...
Anonymous
3 years agoNot applicable
Hi Anonymous ,
You can use a Var to represent the result is the same:
Improvements =
VAR Total = Sum[table] - [Current Improvements]
Return
Total
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.