Forum Discussion
Anonymous
8 years agoNot applicable
Calculate the difference between 2 columns in 2 separate tables
Hi there.
The screen below shows 2 matrix (from 2 different tables). I would like to create a 3rd matrix (in the same format as the 1st 2 matrix) whereby I can show for each financial year, the difference between the approved amount and the committed amount.
Any suggestio would be much appreciated.
Thanks.
Hi@irisyeong
You can do these like me as below:
Step 1:
Create relationship between two table by year like this:
Step 2:Add a measure:Measure = CALCULATE ( SUMX ( Table1, Table1[Qty] - CALCULATE ( SUMX ( RELATEDTABLE ( Table2 ), Table2[Qty] ), FILTER ( Table2, Table2[ComFS] = Table1[FundingSource] ) ) ) )Step 3:Add third matrixResult :Best Regards,
Lin
5 Replies
- v-lili6-msft
Community Support
Hi@irisyeong
You can do these like me as below:
Step 1:
Create relationship between two table by year like this:
Step 2:Add a measure:Measure = CALCULATE ( SUMX ( Table1, Table1[Qty] - CALCULATE ( SUMX ( RELATEDTABLE ( Table2 ), Table2[Qty] ), FILTER ( Table2, Table2[ComFS] = Table1[FundingSource] ) ) ) )Step 3:Add third matrixResult :Best Regards,
Lin
- AnonymousNot applicable
Thanks Lin. It worked. Much appreciated.
- toni14
Helper I
Hi,
I have something similiar. I want to show difference between this two table on a month with graphics preview.
Can you help me ?