Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have a table with quarters and weeks, where the sales is a snapshot of the sales at x weeks into the quarter (cumulative). I'd like to get a sum of all sales filtering only for the latest weeks in the quarter (lines in red below).
The issue I'm running into is that the Max-Weeks formula I use tends to only capture the absolute max of all weeks and ignores the max weeks per quarter. The formula I'm working with is below. Any help?
Qtr | Weeks | Sales |
Q1 | 1 | 1000 |
Q1 | 2 | 1200 |
Q1 | 3 | 1500 |
Q1 | 4 | 1600 |
Q2 | 1 | 500 |
Q2 | 2 | 600 |
Q2 | 3 | 800 |
Q2 | 4 | 1000 |
Q3 | 1 | 200 |
Q3 | 2 | 400 |
Q3 | 3 | 600 |
Q3 | 4 | 800 |
Q4 | 1 | 200 |
Q4 | 2 | 300 |
@AudiencesQuesti Try something like:
Measure =
VAR __Table = SUMMARIZE( 'Table', [Qtr], "__MaxWeek", MAX( 'Table'[Week] ) )
VAR __Table1 =
ADDCOLUMNS(
__Table,
"__Sales",
VAR __Qtr = [Qtr]
VAR __Result = SUMX(FILTER('Table', [Qtr] = __Qtr && [Week] = [__MaxWeek]), [Sales])
RETURN
__Result
)
VAR __Result = SUMX( __Table1, [__Sales] )
RETURN
__Result
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
10 | |
10 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |