I need help to get a dynamic expression for the previous month (December 2022) compared to the current year's month, January 2023.
Perhaps the attached might provide some more clarity.
I need help to get a dynamic expression for the previous month (December 2022) compared to the current year's month, January 2023.
Perhaps the attached might provide some more clarity.
Depends on your data format a bit but in general you should be able to use something like:
= sum( {< Month = {"$(=MonthStart(AddMonths(Today(), - 1)))"} >} Sales)
The set analysis will filter the Sales
and will be sum only values for which Month
is the month start of the previous month (based on Today() function result)