Forum Discussion
IfaZ_1
Helper I
1 year agoPrevious Month Calculation
Hi, I'm running a the end of blocked road here. I have tried several times and still my calculation didnt appear. this is the calculation I made : MoM Total Ticket = CALCULATE( ...
Dangar332
Resident Rockstar
1 year agoHI, IfaZ_1
Try below measure
MoM Total Ticket =
var previous_month = maxx(
filter(
all('FY Date'[Month]),
'FY Date'[Month]<min('FY Date'[Month])
))
return
CALCULATE(
[Total Tickets],
'FY Date'[Month]=previous_month
)
Best Regards,
Dangar
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- IfaZ_11 year ago
Helper I
Hi Dangar,
It is giving me this error