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.
@IGotTheP0werBI 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])
@IGotTheP0werBI 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])
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
103 | |
58 | |
44 | |
29 | |
24 |
User | Count |
---|---|
133 | |
94 | |
74 | |
43 | |
41 |