Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
In excel it is used the function sumproducts, but in power bi there is no such function, how can I calculate the standard deviation?
Solved! Go to Solution.
Hi @Anonymous,
After research, you can use sumx function, I create the following example.
In Power BI, create a measure using the DAX.
result = SUMX(Table2,Table2[A]*Table2[B])
Create a card to diaply it, it return correct result as the following screenshot.
Best Regards,
Angelia
Hi @Anonymous,
After research, you can use sumx function, I create the following example.
In Power BI, create a measure using the DAX.
result = SUMX(Table2,Table2[A]*Table2[B])
Create a card to diaply it, it return correct result as the following screenshot.
Best Regards,
Angelia
https://msdn.microsoft.com/en-us/library/gg492207.aspx
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.