Earlier someone in this community helped me with the above formula. However, I am unable to find the question trait for further reference.
JOIN column: Reference from Sheet A to join 5 columns of data
CONTACT column: Using Vlookup to reference the contact list in Sheet A
=VLOOKUP([Employee ID]@row, {Employee Listing Range}, 3, false)
However, there's error in the rows highlighted pink box. Vlookup is picking on wrong information and the following columns are all in error.
I also finds it difficult to understand the formulas in Branch, Company and Department.
Branch: =LEFT(SUBSTITUTE($JOIN@row, JOIN($Name@row:Name@row, "/") + "/", ""), FIND("/", SUBSTITUTE($JOIN@row, JOIN($Name@row:Name@row, "/") + "/", "")) - 1)
Company: =LEFT(SUBSTITUTE($JOIN@row, JOIN($Name@row:Branch@row, "/") + "/", ""), FIND("/", SUBSTITUTE($JOIN@row, JOIN($Name@row:Branch@row, "/") + "/", "")) - 1)
Department: =LEFT(SUBSTITUTE($JOIN@row, JOIN($Name@row:Company@row, "/") + "/", ""), FIND("/", SUBSTITUTE($JOIN@row, JOIN($Name@row:Company@row, "/") + "/", "")) - 1)
1) I would like to know what could have gone wrong with the Vlookup formula, why isn't it picking the correct information.
2) I would like to understand how the formula in Branch, Company and Department works.
Thank you.