Forum Discussion
r_user
3 years agoNew Member
Power BI - Get value from a different table
Hi Community, I was wondering if it is possible to do the following: I have two tables in PowerBI, one called "Project Overview" and another called "Project X". In the "Project Overview" table ...
amitchandak
Super User
3 years agor_user , with the description, seems like you can have 1 to Many join between project X and Project overview
If you can have one to many join
then you can have a new column in DAX in project overview
related('Project X'[Start Date])
For any type of join
maxX(filter('Project X', 'project Overview'[project name]= 'Project X'[project name] ), 'Project X'[Start Date])