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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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 Solution Authors
Top Kudoed Authors