Forum Discussion
ola1996
Helper I
6 years agoDAX formulas
Hello, I'm new in DAX and I need some help. I try to create new measure to calculate the amount for my accounts. But the problem is that I have amount from each account by months. Like in the table...
Anonymous
6 years agoNot applicable
This is very easy on condition that you've got the correct model.
[Balance -3Mth] =
CALCULATE(
[Balance],
DATEADD(
Calendar[Date],
-3,
month
)
)
Best
D
ola1996
Helper I
5 years agoCan you tell me how to create this formula if I want to add vaules from January to March and show it as a sum of March and January and with next months the same situation ?