Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi,
How do i write this excel formula to power bi:
sumproduct(r4:r36;x4:x36)/sum(x4:x36)
@pro_x - The DAX equivalent for SUMPRODUCT is found here:
https://community.powerbi.com/t5/Community-Blog/S-Excel-to-DAX-Translation/ba-p/1061121
SUMPRODUCT =
VAR __Table =
ADDCOLUMNS(
'Table1',
"Value",[Value1] * RELATED(Table2[Value2])
)
RETURN
SUMX(__Table,[Value])
Thanx but how would i write that formula?
Check out the November 2023 Power BI update to learn about new features.