Forum Discussion
CJANE
8 years agoHelper I
Current and Previous MTD Calculation
Hello: Any recommendations from the community on how I can update the expression below so prior year MTD only includes 10/01/2016 through 10/16/2016. Currently the measure is returning the sum f...
- 8 years ago
Add a calendar table and build relationship.
Measure = TOTALMTD ( SUM ( PrimaryTrades[GrossAmountOffer] ), DATEADD ( DATESMTD ( 'Calendar'[Date] ), -1, YEAR ) )
v-chuncz-msft
8 years agoCommunity Support
Add a calendar table and build relationship.
Measure =
TOTALMTD (
SUM ( PrimaryTrades[GrossAmountOffer] ),
DATEADD ( DATESMTD ( 'Calendar'[Date] ), -1, YEAR )
)