The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
26 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |