I have a scenario where employee data is given in excel sheet with his supervisors details (name and email id). And a supervisor is himself an employee so he will have his supervisors details(name and email id) and so on...
In tabular format -
emp_name email_id supervisor1_name supervisor1_emailid abc abc@xyz.com pqr pqr@xyz.com -------------------------------------- -------------------------------------- pqr pqr@xyz.com lmn lmn@xyz.com
I want to show the above data in the excel sheet itself as follows,
emp_name email_id supervisor1_name supervisor1_emailid supervisor2_name suprvisor2_emailid abc abc@xyz.com pqr pqr@xyz.com lmn lmn@xyz.com
and so on the supervisor details........
till the last supervisor details for each employee.
I am not aware about vba or macros in excel.
I can do it by using vlookup function in excel but its taking too much time so I want to do it by quick and faster way programmatically.