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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
vyny17
Frequent Visitor

Adding a column with related values from other table

Hi there! 

 

I have been facing a problem wich I don't have idea how to solve it, here it is

I want add the column (Effort_in_decimal) from this table to another:

vyny17_3-1645146546117.png  here is the column i want to add in another table that also have the "nome" and "data" column in it

 

The key thing is that i want kind of broadcast this column (with DAX language) according to each relative value from "nome" and "data"

 

vyny17_4-1645146712281.png  that's the table i want to add the column, keeping the relation from "nome" and "data" from the first table, got it?

 

If someone there could help me on that one I'd be really thankful

 

 

 

 

 

 

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

HI @vyny17 ,

You could create new column on the table you want to add column:

Column = LOOKUPVALUE(TableA[value],TableA[date],TableB[date],TableA[name],TableB[name])

vluwangmsft_0-1645519106099.pngvluwangmsft_1-1645519114562.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

View solution in original post

3 REPLIES 3
v-luwang-msft
Community Support
Community Support

HI @vyny17 ,

You could create new column on the table you want to add column:

Column = LOOKUPVALUE(TableA[value],TableA[date],TableB[date],TableA[name],TableB[name])

vluwangmsft_0-1645519106099.pngvluwangmsft_1-1645519114562.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

That's exactly what I wanted!

Thank you very very much!

amitchandak
Super User
Super User

@vyny17 , Based on what I got, a new column in table 2

 

Maxx(filter(Table1, Table1[Noma] = table2[Noma] && Table1[data] = Table2[Data]) , Tabel1[effort_in_decimal])

 

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Solution Authors