DAX measure calculate sum of current and one previous month

dicken

Active Member
Joined
Feb 12, 2022
Messages
283
Office Version
  1. 365
Platform
  1. Windows
Hi,
I'd like to write a measure to calculate the sum of the current and previous month totals, so
Sum dec ; january, Sum January Febuary, Feb : March,
in a nonth month ( Date) scenario I've used the the following;
Excel Formula:
SPC:=
VAR oneV = IF(HASONEVALUE(Table1[Date]),VALUES(Table1[Date])) 

VAR PreV = MAXX(FILTER(ALL(Table1[Date]),Table1[Date]< oneV),Table1[Date]) 

RETURN 

CALCULATE([Tunits], FILTER(ALL('Calendar'[Date]),OR( 'Calendar'[Date]= oneV , 'Calendar'[Date] = PreV )))


but I can't come up with a similar contruction when working just with year /Month pivot table ;
essentially, Sum of
Excel Formula:
 {Tunits] and CALCULATE([Tunits],DATEADD('Calendar'[Date],-1,MONTH))

Any suggestion on how to acheive, this?

Richard.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.

Forum statistics

Threads
1,215,352
Messages
6,124,457
Members
449,161
Latest member
NHOJ

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top