I have a dataset which looks a bit like the below:
| A | B | C | D | E |
| A | B | | D | E |
| F | G | | I | J |
| F | G | H | I | J |
| K | L | | N | O |
| P | Q | | S | T |
So occasionally a row has been duplicated where a single field has both a value and is empty. I would like to remove the rows where the exact same row exists but with data in the 3rd column and keep the row if this is not the case. i.e. make the above look like the below:
How could I go about doing this?
Thanks