Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi Experts
See attached sample pbix file. The score card shows a average calculate of 0.04 when the expected result is 0.35...
Not sure where the error is..
https://www.dropbox.com/s/oaoujisc9rxxur0/Average.pbix?dl=0
Solved! Go to Solution.
Net Amt % AVG V2 : =
VAR _tablesummarize =
ADDCOLUMNS (
SUMMARIZE ( 'STD Dev', 'STD Dev'[Date] ),
"@sumbydate", CALCULATE ( SUM ( 'STD Dev'[Net Amt %] ) )
)
RETURN
AVERAGEX ( _tablesummarize, [@sumbydate] )
@Anonymous
Use a measure like this:
Avg =
AVERAGEX(
SUMMARIZE('STD Dev','STD Dev'[Date],'STD Dev'[New Month],"Avg",sum('STD Dev'[Net Amt %])),
[Avg]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Net Amt % AVG V2 : =
VAR _tablesummarize =
ADDCOLUMNS (
SUMMARIZE ( 'STD Dev', 'STD Dev'[Date] ),
"@sumbydate", CALCULATE ( SUM ( 'STD Dev'[Net Amt %] ) )
)
RETURN
AVERAGEX ( _tablesummarize, [@sumbydate] )
Hi Kim... Could you look at https://community.powerbi.com/t5/Desktop/Standard-Deviation-of-multiple-values-same-dates/m-p/197763... - totally stick all day
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.