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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have a many to many join but what I want is to bring a column of data in from one table to another. However, the related function won't work.
The 2 tables are appvalue and appfunds and are joined together on name. I need to bring in the MAX appid from appvalue into appfunds. Any idea how to do this please?
Solved! Go to Solution.
Hi @M_SBS_6
From what you've described, you can create this column in appfunds:
Max appid =
CALCULATE ( MAX ( appvalue[appid] ) )
Does this work as intended?