Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have 3 months rolling average. I need to Calculate Standard Devation for 3 months rolling average. I'm using custom calender.
Please, help on this.
Here's a measure expression that shows one way to do it.
SD P3M =
VAR vMaxDate =
MAX ( 'Date'[Date] )
VAR tP3M =
CALCULATETABLE (
ADDCOLUMNS ( VALUES ( 'Date'[YearMonth] ), "cTotSales", [Total Sales] ),
ALL ( 'Date' ),
'Date'[Date] <= vMaxDate
&& 'Date'[Date]
>= EOMONTH ( vMaxDate, -3 ) + 1
)
RETURN
IF ( COUNTROWS ( tP3M ) = 3, STDEVX.S ( tP3M, [cTotSales] ) )Pat
Hi Pat,
Thanks for your reply but It's not working.
Mavg("Fact table"."TRX_VALUE_USD"/1000000,3)-STDDEV(Mavg("Fact table"."TRX_VALUE_USD"/1000000,3))
this one created in OAC, I need to create same thing dax. Please, help me on this.
Thanks
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |