Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
sbenzaquen
Helper I
Helper I

Add columns + related function with many-to-many relationship / merging two calculated tables

Hi,

 

I would like to merge the following two calculated table:

 

Table 1: Year/month - team - team count - working days

Table 2: Year/month - team -  days-off

 

 

I would like to bring the days-off data over to table 1 as an additional column. I tried using ADDCOLUMNS+ RELATED functions but is not working because i.) they have a many-to-many relationships and ii) they are calculated tables I can't merge them using PQ which would be ideal as the days-off result will depend on two variables the month/year and team.

 

How could anyone please help me to solve this issue?

 

Thank you in advance,

Salvador

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @sbenzaquen ,

 

To my knowledge, RELATED() works only for side 1 of the relationship.

Since the relationship in your data is Many to Many,it's suggested to use RELATEDTABLE() instead.

 

In addition, if the days-off is unique based on each YearMonth and Team, you could use LOOKUPVALUE() like this:

Dayoff = LOOKUPVALUE('Table2'[Days-off], 'Table2'[Year/Month],'Table1'[Year/Month],'Table2'[Team],'Table1'[Team])

lookupvalue.PNG

If it does not make sense ,please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @sbenzaquen ,

 

To my knowledge, RELATED() works only for side 1 of the relationship.

Since the relationship in your data is Many to Many,it's suggested to use RELATEDTABLE() instead.

 

In addition, if the days-off is unique based on each YearMonth and Team, you could use LOOKUPVALUE() like this:

Dayoff = LOOKUPVALUE('Table2'[Days-off], 'Table2'[Year/Month],'Table1'[Year/Month],'Table2'[Team],'Table1'[Team])

lookupvalue.PNG

If it does not make sense ,please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you @Anonymous .

 

Your solution was not working initially because I the same year/month multiple times for one team. But I fixed it using Summerize + Roll up function.

 

All working well now.

 

Thanks,

Salvador

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.