The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello Community,
I have quite a challenge here. I got these two tables, many-to-one relationship:
Table1 Table2
What I'm trying to do is to create a measure that will calculate the following expression: Value + (Numerator/Area).
Any suggestion is highly appreciated!
Solved! Go to Solution.
Hi @lrnt12,
You should create a measure that looks like this:
Calculated Measure = IFERROR ( CALCULATE ( SUMX ( Table1; Table1[Value] + Table1[Numerator] / SUM ( Table2[Area] ) ) ); BLANK () )
You should use the Mark from Table 1 to make this work
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @lrnt12,
You should create a measure that looks like this:
Calculated Measure = IFERROR ( CALCULATE ( SUMX ( Table1; Table1[Value] + Table1[Numerator] / SUM ( Table2[Area] ) ) ); BLANK () )
You should use the Mark from Table 1 to make this work
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks a lot, Felix! Works like a charm!
User | Count |
---|---|
65 | |
60 | |
55 | |
54 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
45 |