I have an Excel workbook with two sheets:
"Interface" – containing the columns: Emp_id, Variable_type, and Amount
"Variable" – containing the columns: User_id, Paycode, and Value
I need to perform a reconciliation between these two sheets by:
Concatenating the following columns to create unique keys:
In the Interface sheet: Emp_id, Variable_type, Amount
In the Variable sheet: User_id, Paycode, Value
Using these concatenated keys, perform a lookup to:
Identify entries that are present in Interface but missing in Variable
Identify entries that are present in Variable but missing in Interface
Finally, I want to create two new columns in both sheets to show the missing entries (i.e., unmatched records) from each side.
Approach i followed is : input both sheets> data cleaning by removing trailing spaces> formula tool :interface sheet
new column: emp_id clean: lowercase([emp_id)}
new column:Variable_type clean: lowercase([Variable_type)}
new column:amount clean: ltostring(round(tonumber(amount)},2))
new column: concat [emp_id clean]+[Variable_type clean] +[ amount clean]
did same for other sheet and then used join tool using concat_key
Is this correct or is there any other way which can tell the vlookup /missing entries in each sheet ?