Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

View all the Fabric Data Days sessions on demand. View schedule

Reply
RT6
Frequent Visitor

same months comparison over the years - DAX

Hi all!

 

i use this DAX 

CY = CALCULATE(SUM('Market'[Sales]), DATESMTD('Calendar'[Date]))/1000;
 
and for the last year 
LY = CALCULATE(SUM('Market'[Sales]),DATESMTD(dateadd('Calendar'[Date],-1,YEAR)))/1000
 
the issue is when i select filter for example jan&feb 2024, it shows only value for February 2024 & 2023 accordingly. But i need a sum for of all selected months  
 
Any suggestions?
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @RT6 

 

Thanks for the reply from @Dangar332 , please allow me to provide another insight:

 

My sample:

vxuxinyimsft_0-1712730542611.png

 

vxuxinyimsft_1-1712730596323.png

 

Create a measure as follows

comparison = 
VAR _previous = CALCULATE(SUM(Market[Sales]), FILTER(Market, [Date] IN SAMEPERIODLASTYEAR('Calendar'[Date])))
VAR _current = CALCULATE(SUM(Market[Sales]), FILTER(ALL(Market), [Date] IN VALUES('Calendar'[Date])))
RETURN
DIVIDE(_previous + _current, 1000)

 

Result:

vxuxinyimsft_2-1712730733490.png

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @RT6 

 

Thanks for the reply from @Dangar332 , please allow me to provide another insight:

 

My sample:

vxuxinyimsft_0-1712730542611.png

 

vxuxinyimsft_1-1712730596323.png

 

Create a measure as follows

comparison = 
VAR _previous = CALCULATE(SUM(Market[Sales]), FILTER(Market, [Date] IN SAMEPERIODLASTYEAR('Calendar'[Date])))
VAR _current = CALCULATE(SUM(Market[Sales]), FILTER(ALL(Market), [Date] IN VALUES('Calendar'[Date])))
RETURN
DIVIDE(_previous + _current, 1000)

 

Result:

vxuxinyimsft_2-1712730733490.png

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

RT6
Frequent Visitor

hi Yulia, 

 

thanks for your response! SAMEPERIODLASTYEAR worked well in this case 🙂

 

 

 

 

Dangar332
Super User
Super User

Hi, @RT6 

 you have slicer in month form and you want sum of month wise then use DATESYTD()

 

use DATESYTD instead of DATESMTD

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.