Forum Discussion
Many to Many relationship
- 8 years ago
Well, I don't normally answer questions when people force me to hand enter their data instead of posting it in a manner that can be easily copied and pasted or answer questions that don't adequately explain what they are trying to achieve, you don't have any explanation about where your Allocation2 column comes from.
But, all that being said, check out the attached PBIX, should solve your issue. They key measure is:
Measure = SUM(Table1[Allocation]) - SUMX(FILTER(Table2,[Date1]=MAX(Table1[Date])),[Allocation1])
But, you have to use it the right way. You want to use Category from your bridge table, [Date] from your Table1 and then that measure.
For future reference, Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Well, I don't normally answer questions when people force me to hand enter their data instead of posting it in a manner that can be easily copied and pasted or answer questions that don't adequately explain what they are trying to achieve, you don't have any explanation about where your Allocation2 column comes from.
But, all that being said, check out the attached PBIX, should solve your issue. They key measure is:
Measure = SUM(Table1[Allocation]) - SUMX(FILTER(Table2,[Date1]=MAX(Table1[Date])),[Allocation1])
But, you have to use it the right way. You want to use Category from your bridge table, [Date] from your Table1 and then that measure.
For future reference, Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Greg_Deckler It worked perfectly. Thanks very much.