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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
r0ot5
Frequent Visitor

Sum based on year and only sum month equal or greater

Hi,

 

I'm trying to get a SUM based on the year and filter by month. For exemple if the year = 2021 then only select month equal or greater then august but if not then select all month. Not sure where to start.

 

Based on the attach screenshot:

 

If D_STARTDATE = CURRENT YEAR THEN SUM M3 COLUMN WHERE D_BILLDATE >= CURRENT MONTH ELSE SUM M3.

 

2021-08-19_14-13-40.png

 

Thanks,

1 REPLY 1
amitchandak
Super User
Super User

@r0ot5 , Try a measure like

 


Measure =
var _year = maxX(allselected('Date'), 'Date'[Year])
var _mon = maxX(allselected('Date'), 'Date'[Month])
return
return
calculate(sum(Table[value]), filter(all('Date'), 'Date'[Year] =_max && 'Date'[Month] >=_mon))

 

 

Prefer an independent date table if you need a trend

Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors