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 August 31st. Request your voucher.
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])
User | Count |
---|---|
26 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |