Forum Discussion
ppc_raltandi
4 years agoFrequent Visitor
SUMX from two tables
Hi all, I'm breaking my head with trying to figure out a calculation in my Power BI workbook. When using SUMX function I don't get my desired result and wish to have someone shed some light on ho...
- 4 years ago
Hi ppc_raltandi ,
According to your description, here is my solution.
Firstly, make sure that the relationships between the four tables are available.
As ReneMoawad mentioned, create a table first.
NewTable = CALCULATETABLE ( SUMMARIZE ( 'Enrollment Type', 'Enrollment Type'[Person ID], 'Enrollment Type'[Type], "Fraction", CALCULATE ( SUM ( 'Enrollment Type'[Fraction] ) ), "Expenditure", CALCULATE ( SUM ( Expenditure[Spend] ) ), "Sum Product", CALCULATE ( SUM ( 'Enrollment Type'[Fraction] ) ) * CALCULATE ( SUM ( Expenditure[Spend] ) ) ) )According to your description, I know that you want to calculate the division with the total “Fraction” and “Sum Product”. Therefore, we need to establish another measure.
Estimated = DIVIDE ( SUM ( 'NewTable'[Sum Product] ), SUM ( 'NewTable'[Fraction] ) )Final output:
Best Regards,
Community Support Team _ xiaosunIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
4 years agoHi,
Share the download link of your Excel workbook with your formulas intact for further clarity.