Hi,
I would appreciate your help with the following.
I need to group users using three fields. Here is an example:
| 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 first 5 records belong to one employee (wither by ID, Shortname or Email). My goal is to get a column "Output". Basically my aim is to get information which IDs, Shortnames and Emails are associated with the same employee.
Thank you a lot for your help!