The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
hi,
i want to divide two measures, and then to sum all the rows division.
currently, what power bi does is divide (sum(measure1),sum(measure2))
what i want is sum(divide(measure1,measure2))
and that is not the same result.
how can i do it?
thanks!!!
Solved! Go to Solution.
Hi There,
You can use SUMX for this purpose.
YourSolution:=SUMX(Table,[Measure1]/[Measure 2])
If you want to achieve this using calculated column, you would not require SUMX.
Thanks & Regards,
Bhavesh
Hi There,
You can use SUMX for this purpose.
YourSolution:=SUMX(Table,[Measure1]/[Measure 2])
If you want to achieve this using calculated column, you would not require SUMX.
Thanks & Regards,
Bhavesh