Forum Discussion
yosemite
6 years agoHelper III
LOOKUPVALUE - Need Help
Hello, I need to perform a look up of Table1[Column1] in Table 2[Column1] and return values that do not exist in Table1[Column1]. Appreciate any help. Thank you.
- 6 years ago
Hi yosemite ,
Take a look at this file: Download PBIX
Basically I grouped the values per week and joined with a left anti and filtered nulls.
Did I answer your question? Mark my post as a solution!
Ricardo - 6 years ago
yosemite ,
Check this new file: Download PBIX
Take a look at the week_missing table on Power Query.
Did I answer your question? Mark my post as a solution!
Ricardo
camargos88
6 years agoCommunity Champion
yosemite ,
Table.RenameColumns is a function, you can change it. You just change the parameters of it.
= Table.AddColumn(#"Grouped Rows", "Custom", each Table.Join(
#"ABCEmployees", "EMPLOYEE_ID",
Table.RenameColumns([Rows],
{"EmployeeNo", "EmployeeName"}),
"EmployeeName", JoinKind.LeftAnti))
yosemite
6 years agoHelper III
camargos88 You are awesome! Thanks for your help.