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.
Hello,
I have the following formula that calculates the standard deviation of my last 7 days of sales:
Here are a couple of options:
1. A reasonably concise version, which applies a LASTDATE filter first, then applies 7 week range and Weekday filters within that:
7W StDev (current weekday) =
CALCULATE (
CALCULATE (
STDEVX.P ( 'Date Dim', CALCULATE ( SUM ( '--Sales'[sales_units] ) ) ),
DATESINPERIOD ( 'Date Dim'[Report Date], MAX ( 'Date Dim'[Report Date] ), -49, DAY ),
VALUES ( 'Date Dim'[Day of Week] ),
REMOVEFILTERS ( 'Date Dim' ) -- precaution
),
LASTDATE ( 'Date Dim'[Report Date] )
)
2. Similar structure to your existing measure
7W StDev (current weekday) =
VAR CurrentDateRow =
INDEX ( 1, 'Date Dim', ORDERBY ( 'Date Dim'[Report Date], DESC ) )
VAR CurrentDate =
SELECTCOLUMNS ( CurrentDateRow, 'Date Dim'[Report Date] )
VAR CurrentDayOfWeek =
SELECTCOLUMNS ( CurrentDateRow, 'Date Dim'[Day of Week] )
RETURN
STDEVX.P (
FILTER (
ALL ( 'Date Dim' ),
'Date Dim'[Report Date] >= CurrentDate - 48
&& 'Date Dim'[Report Date] <= CurrentDate
&& 'Date Dim'[Day of Week] = CurrentDayOfWeek
),
CALCULATE ( SUM ( '--Sales'[sales_units] ) )
)
3. Another alternative with STDEVX.P in CALCULATE:
7W StDev (current weekday) =
VAR CurrentDateRow =
INDEX ( 1, 'Date Dim', ORDERBY ( 'Date Dim'[Report Date], DESC ) )
-- Alternative:
-- TOPN ( 1, 'Date Dim', 'Date Dim'[Report Date] )
VAR CurrentDate =
SELECTCOLUMNS ( CurrentDateRow, 'Date Dim'[Report Date] )
VAR CurrentDayOfWeek =
SELECTCOLUMNS ( CurrentDateRow, 'Date Dim'[Day of Week] )
RETURN
CALCULATE (
STDEVX.P ( 'Date Dim', CALCULATE ( SUM ( '--Sales'[sales_units] ) ) ),
DATESINPERIOD ( 'Date Dim'[Report Date], CurrentDate, -49, DAY ), -- 49 day period ending on CurrentDate
CurrentDayOfWeek -- Apply CurrentDayOfWeek filter
)
Do any of these work for you?
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 |