Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all, I have a data on customers payments by months:
I want to compare between the column of last month to the average of the other months. something like this:
How I do this? thanks!
Current Month:
Sum({<Year=, Quarter=, Month=, Week=, Date={‘>=$(=MonthStart(Max(Date)))<=$(=Max(Date))’}>} Sales)
Previous Month:
Sum({<Year=, Quarter=, Month=, Week=, Date={‘>=$(=MonthStart(Max(Date), -1))<=$(=MonthEnd(Max(Date), -1))’}>} Sales)
Hope this helps you.