Forum Discussion
Anonymous
5 years agoNot applicable
Measure from 2 Different Tables
Hi all, I wanted to create summary table to show the scores of each objective. So at the moment, I have 3 tables: Dimension table [Objectiveskey, Measure Name, Description, Department] Fact...
v-kkf-msft
5 years agoCommunity Support
Hi Anonymous ,
You may create two measures:
_condition =
CALCULATE(
SUM('Fact table 2'[condition]),
FILTER(
ALL('Fact table 2'),
'Fact table 2'[Objectivekey] = MAX('Dimension table'[Objectiveskey])
&& 'Fact table 2'[Datekey] = MAX('Fact table 1'[Datekey])
)
)score/condition = DIVIDE( MAX('Fact table 1'[score]), [_condition] )
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.