Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am in direct query mode utilizing two tables that have a many to many relationship. The tables are related based on a salesorder key.
I am trying to create a relatedtable measure/calculated column that returns the SOcreateddate from the dimorderinvoicemapping table and places those dates on the factsalesinvoice table
Solved! Go to Solution.
Hi @dwhittaker1 ,
@amitchandak is right , so I can give you other solutions
Below is my table1:
Below is my table2:
The following DAX might work for you:
Column = RELATED('Table'[Socreatedate])
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dwhittaker1 ,
@amitchandak is right , so I can give you other solutions
Below is my table1:
Below is my table2:
The following DAX might work for you:
Column = RELATED('Table'[Socreatedate])
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@dwhittaker1 , You can use related in case of direct query to bring data from one side to many side . Because you want data from dim, you should be able to use related
I do not think you need a relatedtable a simple measure will aggregate data against many side to one side
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.