The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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