March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I have two tables; the "Employees" table and the "Additional Information" table. I now want to copy from the "Additional Information" table the values from the fields "Company", "Contract" and "Contract type" to the "Employees" table, where the fields "Employee ID", "Year" and "Month" are identical.
Employees table:
Additional Information table:
What is the formula for the "Employees" table?
Solved! Go to Solution.
I have solved it now with "CONCATENATE" (the Employee ID, Year and Month) and then with "LOOKUPVALUE". And it works 🙂
I have solved it now with "CONCATENATE" (the Employee ID, Year and Month) and then with "LOOKUPVALUE". And it works 🙂
unfortunately this does not work either. Employee ID (= identifier for the employee) cannot be in a 1:1 relationship, because every month the employees are added.
So Brad Pitt always has employee ID 2, and then it does not work with this solution.
What I think that it must be work, there should be three new calculated columns (one each for "Company", "Contract" and "Contract type") in the table "Employee Table", where the three fields "Employee ID", "Year" and "Month" are used to find a match in the other table ("Additional Information table") and then the respective value (Company, Contract and Contract type) is transferred to each calculated column.
but what is the formula for this?
Hi @GeorgW ,
Here are the steps you can follow:
1. Create calculated table.
Table 2 = SUMMARIZE('Table',
'Table'[Employye ID],'Table'[Name],'Table'[birthdate],'Table'[sex],'Table'[Department],'Table'[Location],'Table'[Year],'Table'[Month],
"Company",CALCULATE(MAX('Table (2)'[Company])),
"Contract",CALCULATE(MAX('Table (2)'[Contract])),
"Contract type",CALCULATE(MAX('Table (2)'[Contract type]))
)
2. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@GeorgW , You can merge in power Query and keep the required columns
https://radacad.com/append-vs-merge-in-power-bi-and-power-query
Video: https://www.youtube.com/watch?v=zNrmbagO0Oo
Dax you can do column by column: https://www.youtube.com/watch?v=czNHt7UXIe8
Thank you very much. But that is - I think - not the solution. I have presented the two tables in a very simplified way; they are already combined tables with much more information, so another combination won't work. Besides, I have several "key columns" (employee ID, year AND month). Can't I solve it with a formula?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
165 | |
116 | |
63 | |
57 | |
50 |