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 want to feed the column 'TABLE 01'[ID] with ID contained from table 02
to get this
How can I do it in DAX please. I thank you in advance.
Jay
Solved! Go to Solution.
Hi,
You don't really even need dax. If you have these two tables:
Just create a relationship like this:
Now you can visualize the account from one table and get the corresponding id:
If you want to use dax:
Column:
(RELATED is the most straigt-forward)
If you don't have a relationship:
Measure:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Hi,
You don't really even need dax. If you have these two tables:
Just create a relationship like this:
Now you can visualize the account from one table and get the corresponding id:
If you want to use dax:
Column:
(RELATED is the most straigt-forward)
If you don't have a relationship:
Measure:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!