Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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:
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"
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
Solved! Go to Solution.
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])
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
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])
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!
@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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.