Hello,
I'm looking to filter out records in my data that have a blank value in one column "Name", but only if the record is a duplicate the "RecordID" field. For example:
| RecordID | Name | Value |
| 5 | 10 | 5040000 |
| 61 | 2 | 112370815 |
| 61 | 3 | 112766510 |
| 61 | 4 | 17653044 |
| 61 | 5 | 8305757 |
| 61 | 6 | 485695 |
| 61 | 7 | 21201225 |
| 61 | 8 | 182425 |
| 1 | | |
| 5 | | |
| 61 | | |
In the above extract, I would want to keep the first record for where "RecordID" = 5 ("Name" = 10) and remove the blank record where "RecordID" = 5. However, for "RecordID" = 61, I want to keep all records except for the last blank record. Finally, there is only one record for "RecordID" = 1, and I want this to be kept and not removed.
Appreciate any advice you may have with helping solve this problem!