Forum Discussion
mikeng
8 years agoFrequent Visitor
calculation using 2 fact tables
Hi guys, I'm struggling for days on this problem. So I have 2 fact tables (assume that they are linked by all necessary Dimension tables): Table A: which contains value (USD) Table B: allocation ...
- 8 years ago
WolfBiber
8 years agoMicrosoft Employee
Hi mikeng, if you have already a connection in your Datamodel use Following Dax using a 'New Measure':
Allocation = sum(TableA[USD]) * max(TableB[Allocation rate])
Greetings
- mikeng8 years agoFrequent Visitor
Thanks for your suggestion. I've tested it and it doesn't work.