Hi everyone
I have a dataset that looks like this:
| Record ID | F1 | F2 | F3 | F4 |
| [NULL] | [NULL] | Building 1 | Building 2 | Building 2 |
| 5 | 12/31/2021 | 200 | [NULL] | 654 |
| 8 | 12/31/2021 | 300 | [NULL] | 200 |
I'm trying to remove column F3 entirely from the dataset because F4 already has the data for Building 2, so I want the dataset to look like this:
| Record ID | F1 | F2 | F3 or F4 (this name doesn't matter) |
| [NULL] | [NULL] | Building 1 | Building 2 |
| 5 | 12/31/2021 | 200 | 654 |
| 8 | 12/31/2021 | 300 | 200 |
Using the Select tool would not work because the column(s) with null rows to be removed differ each time.
For the purposes of this dataset, there will always only be 3 rows with the first row being NULL, but the Record ID numbers can change each time (this time it's NULL, 5 and 8, next time it could be NULL, 9 and 15).
Thanks in advance for your help!