The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?