Forum Discussion
Linking two matrix with different data
- Anonymous5 years ago
Hi Anonymous ,
Here are the steps you can follow:
1. Create calculated table.
Slice = DISTINCT('Table'[Attribute])2. Create measure.
Measure = var _select =SELECTEDVALUE('Slice'[Attribute]) return CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Quarter]=MAX('Table'[Quarter])&&'Table'[Year]=MAX('Table'[Year])&&'Table'[Attribute]=_select))Measure 2 = var _select =SELECTEDVALUE('Slice'[Attribute]) return SWITCH( TRUE(), _select="Operating Income",CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Attribute]="AOI%"&&'Table'[Quarter]=MAX('Table'[Quarter])&&'Table'[Year]=MAX('Table'[Year]))), _select="EBITDA",CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Attribute]="EBITDA%"&&'Table'[Quarter]=MAX('Table'[Quarter])&&'Table'[Year]=MAX('Table'[Year]))))3. Use the [Attribute] of the Slice table as a slicer, create two matrices, and put them into Measure and Measure2 respectively
Slice:
Matrix 1:
Matrix 2:
4. Result:
Select "Operating Income" in the slicer, the value of "Operating Income" is displayed in matrix 1, and the value of "AOI%" is displayed in matrix 2.
Select "EBITDA" in the slicer, the value of "EBITDA" is displayed in matrix 1, and the value of "EBITDA %" is displayed in matrix 2.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi Anonymous ,
I think you mean to say AOI and AOI% are coming from same table. Right?
Is AOI% calculated some how using AOI column?
Can you please add some screenshots of you both matrix visual please in the following scenarios:
- first screenshot with both matrix without any selection in the slicer
- second screenshot with both matrix with a value selected in the slicer
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Thanks,
Pragati