Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
65 | |
45 | |
39 | |
31 |
User | Count |
---|---|
164 | |
111 | |
61 | |
53 | |
38 |