Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
If the tables in your data model has relationship(one-one, one-many) with each other, you can use RELATED() function on the one side table. Nest the RELATED() function into FILTER(). The DAX expression will be like pattern below:
Result = CALCULATE ( MAX ( Table1[Value1] ), FILTER ( Table1, Table1[Value2] = RELATED ( Table2[Value3] ) ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If the tables in your data model has relationship(one-one, one-many) with each other, you can use RELATED() function on the one side table. Nest the RELATED() function into FILTER(). The DAX expression will be like pattern below:
Result = CALCULATE ( MAX ( Table1[Value1] ), FILTER ( Table1, Table1[Value2] = RELATED ( Table2[Value3] ) ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.