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.
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])