Forum Discussion
Zyg_D
5 years agoContinued Contributor
Making the lookup work.
This is my data and model: let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjRU0lECYTMzM6VYHaCAEVTA3NwcLGAE4oAELSwsIAJGUAFLS0ul2FgA", BinaryEncoding.Base64), Co...
PaulDBrown
5 years agoCommunity Champion
For a measure, try:
Measure = CALCULATE(MAX(table3[AttributeData]), TREATAS(VALUES(table1[AttributeChild]), table3[Attribute])
If you prefer a calculated column for table1:
Column = LOOKUPVALUE(Table3[AttributeData], Table3[Attribute], Table1[Attribute Child])
Btw, why do you need a two-directional cross filtering in many-to-one relationships?
Tahreem24
5 years agoSuper User
Zyg_D ,
Below is the screen shot only based on relationship.
Step 1: Create the relationship like below screen shot.
Step 2: Directly take all columns from table 1 and simply take AttributeData from Table3. (refer screen shot 2).
Step 3: If you want to achieve using a dax so write column : CALCULATE(MAX(Table3[AttributeData])). (Refer screen shot 3).
1 (Relationship)23 (DAX Column)