Hi!
I need help with the following:
I want to group the user list by employees. Here is an example data.
| ID | Shortname | Email | Output |
| 123 | asmith | adam.smith@gmail.com | 1 |
| 123 | asmith1 | adam.smith1@gmail.com | 1 |
| 234 | asmith | adam.smith1@gmail.com | 1 |
| 567 | asmith2 | adam.smith@gmail.com | 1 |
| 123 | asmith2 | adam.smith3@gmail.com | 1 |
| 987 | dlopez | dan.lopez@gmail.com | 2 |
I know that 5 first records belong to one employee (by ID, Shortname or email). My expected output is in the "Output" column. My goal is to get information which IDs, Shortnames and emails are associated with the same employee (here in the example noted as "1").
Thank you everyone for help:)