Hi,
Newbie here with very basic knowledge on how to use VBA (not knowledgeable enough to create VBA code). I need some help in creating a list of all peers for a given employee list. Below is a sample:
Output:
Newbie here with very basic knowledge on how to use VBA (not knowledgeable enough to create VBA code). I need some help in creating a list of all peers for a given employee list. Below is a sample:
Employee List | |
Emp Name | Manager Name |
A1 | M1 |
A2 | M1 |
A3 | M1 |
A4 | M2 |
A5 | M2 |
Output:
List of Peers | |
Emp Name | Peer Name |
A1 | A2 |
A1 | A3 |
A1 | A4 |
A2 | A1 |
A2 | A3 |
A2 | A4 |
A3 | A1 |
A3 | A2 |
A3 | A4 |
A4 | A5 |
A5 | A4 |