Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.
Thanks,
@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