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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Good Day,
I am needing to a do a rolling total by year and location. If I filter it down to one location I get the correct results but having all locations selected in the column chart it gives wonky numbers. Can someone help me?
I currently have this formula
to get the rolling total and
IF I have all locations filtered
Filtering one location = correct results
Start adding more locations and it will start getting all wonky.
Solved! Go to Solution.
@Anonymous Try:
Better RT =
VAR __Date = MAX('Assets'[Created_Date])
VAR __Location = MAX('Assets'[MC's (2) Branch_Location])
VAR __Table = FILTER(ALLSELECTED('Assets'),[Created_Date] <= __Date && [MC's (2) Branch_Location] = __Location)
RETURN
SUMX(__Table,[Status Bit])
@Anonymous Try:
Better RT =
VAR __Date = MAX('Assets'[Created_Date])
VAR __Location = MAX('Assets'[MC's (2) Branch_Location])
VAR __Table = FILTER(ALLSELECTED('Assets'),[Created_Date] <= __Date && [MC's (2) Branch_Location] = __Location)
RETURN
SUMX(__Table,[Status Bit])
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 |
|---|---|
| 10 | |
| 10 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 19 | |
| 16 | |
| 10 |