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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I would like to find a rolling sum for three years for every colour provided.
Solved! Go to Solution.
hi @Anonymous
try to plot a visual with year and colour columns, and a measure like:
3YColourSum =
VAR _year = MAX(TableName[year])
RETURN
SUMX(
FILTER(
ALL(TableName),
TableName[Colour] = MAX(TableName[Colour])
&&TableName[Year] IN {_year, _year-1, _year-2}
),
TableName[Sales]
)
it worked like:
Thank you! It worked well.
hi @Anonymous
try to plot a visual with year and colour columns, and a measure like:
3YColourSum =
VAR _year = MAX(TableName[year])
RETURN
SUMX(
FILTER(
ALL(TableName),
TableName[Colour] = MAX(TableName[Colour])
&&TableName[Year] IN {_year, _year-1, _year-2}
),
TableName[Sales]
)
it worked like:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 20 | |
| 13 | |
| 11 |