Hi! I hope someone can help me simplify my data.
Currently, I have data that looks like this (example):
| ID | Gender | Age | Education | Special answer 1 | Special answer 2 | Special answer 3 |
| 1 | M | 20 | College | A | B | [Null] |
| 1 | M | 20 | College | [Null] | [Null] | C |
| 1 | M | 20 | College | [Null] | [Null] | [Null] |
| 1 | M | 20 | College | [Null] | [Null] | [Null] |
| 2 | F | 25 | High School | [Null] | B | [Null] |
| 2 | F | 25 | High School | D | [Null] | F |
| 3 | M | 30 | College | A | [Null] | [Null] |
| 3 | M | 30 | College | [Null] | G | [Null] |
I want it to look like this:
| ID | Gender | Age | Education | Special answer 1 | Special answer 2 | Special answer 3 |
| 1 | M | 20 | College | A | B | C |
| 2 | F | 25 | High School | D | B | F |
| 3 | M | 30 | College | A | G | [Null] |
I don't how to combine or summarize the data so it combines this way. There won't always be an answer in the special answer field, so I need it to pull from the right row. There could be two rows or several. However, some fields will be the same (or should be the same everywhere) that can act as the key. ID is the primary key.
Thank you in advance for the help and any suggestions!