I have an excel workbook to track my online shop sales. There are two sheets: one for ‘Orders’ and the other for ‘Customers’. They are databases of my orders and clients, respectively. In the ‘Orders’ sheet one of the columns shows who the client is. I would like each customer in the ‘Orders’ sheet to link to the respective row of this customer in the ‘Customers’ sheet. Can I achieve this with VLOOKUP or something else?
Orders sheet
A B ...
Order number Customer
1 A. Smith
2 B. Browns
3 P. Williams
Customers sheet
A B ...
Customer name email
A. Smith [email protected]
B. Browns [email protected]
P. Williams [email protected]
I tried this, but won't work:
=HYPERLINK(VLOOKUP(B2;Customers!A:A;1;FALSE), B2)