Forum Discussion
Anonymous
8 years agoNot applicable
Dax
Hi everyone, I have some issues about creating a new table, I have 3 sheets from Excel and I have loaded into Power BI. Sheet1 and Sheet2 are including with Name, Date and Balance, so th...
- 8 years ago
Hi Anonymous,
You could try this:
FinalTable = ADDCOLUMNS ( UNION ( Sheet_1, Sheet_2 ), "Age", LOOKUPVALUE ( Sheet_3[Age], Sheet_3[Name], [Name] ) )Best regards,
Yuliana Gu
v-yulgu-msft
8 years agoMicrosoft Employee
Hi Anonymous,
You could try this:
FinalTable =
ADDCOLUMNS (
UNION ( Sheet_1, Sheet_2 ),
"Age", LOOKUPVALUE ( Sheet_3[Age], Sheet_3[Name], [Name] )
)
Best regards,
Yuliana Gu
Anonymous
8 years agoNot applicable
Thanks! It works out!