We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
Hi, I am working on a measure to calculate the average of the previous 3 months' sales. I figured this out for months that are all in the same year, then I realized that in January the measure wouldn't work. Currently I calculate 3 measures for Month-1, Month-2, and Month-3, and then add them up and divide by 3 to get the average. Here is what Month-2 looks like (the other 2 measures are the exact same just different offsets of the month):
Solved! Go to Solution.
Hi, @sjpusat16
use EDATE dax func.
for example,
RollingCalendar[Month] = MONTH(EDATE(TODAY(), -2)),
RollingCalendar[Year] = YEAR(EDATE(TODAY(), -2))
refer to this doc: https://learn.microsoft.com/en-us/dax/edate-function-dax
Proud to be a Super User!
Hi, @sjpusat16
use EDATE dax func.
for example,
RollingCalendar[Month] = MONTH(EDATE(TODAY(), -2)),
RollingCalendar[Year] = YEAR(EDATE(TODAY(), -2))
refer to this doc: https://learn.microsoft.com/en-us/dax/edate-function-dax
Proud to be a Super User!
User | Count |
---|---|
13 | |
12 | |
7 | |
7 | |
6 |
User | Count |
---|---|
25 | |
20 | |
11 | |
11 | |
5 |