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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
plmiquelon
Frequent Visitor

Link from one table to many

I have a main table called Overview extracted from a project management software in which i have the following column

 

Project 

First Name

Last Name

Hours logged

 

For each project, I have a Rate table with the following column

First Name

Last Name

Rate

 

I want to extract the cost of each project by multiplying the rate x hours logged. 

 

How can I have my main table have one RATE column that populates based on the project specific rate?

 

Thank you,

3 REPLIES 3
plmiquelon
Frequent Visitor

@amitchandak that work. What if I have multiple projects (so multiple Table 2), can I use an OR condition?

Ashish_Mathur
Super User
Super User

Hi,

Assuming there is a Project column in Table2 as well, write this calculated column formula in Table1

Rate = calculate(sum(Table2[Rate]),filter(table2,table2[Project]=earlier(table1[Project])&&table2[First name]=earlier(table1[first name])&&table2[Last name]=earlier(table1[last name])))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

@plmiquelon , A new column in Table 1

 

MAxx(filter(Table2, Table2[First Name] = table1[First Name] && Table2[Last Name] = Table1[Last name]) , Table2[Rate])

 

This will rate in Table1 as column, which you can multiply

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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