Forum Discussion
IfaZ_1
Helper I
2 years 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( ...
Anonymous
2 years agoNot applicable
Hi IfaZ_1 ,
Thanks to Irwan , Dangar332 and some_bih for their quick replies. I have some other thoughts to add:
(1) We can create a column on [FY Date] table.
Month_num = MONTH([Date])
(2) We can create a measure.
MoM Total Ticket =
CALCULATE(
[Total Tickets],
FILTER(ALL('FY Date'),[Month_num]=MAX('FY Date'[Month_num])-1)
)
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.