Hello,
In my dataset I have the following table.
| ID | Client name |
| 123 | Client A |
| 456 | Client B |
| 789 | Client C |
| 0147 | Client A |
| 456 | Client C |
I need two soluction here: make sure each client has its own ID and that each ID has refers to only one client. I would like to filter, in case there are any clients with two different ID.
In this case, I would have to filter the last 2 lines, because these don't follow my requirements.
Thank you in advance.