Hello everyone the data coming in looks like this
| Product | High User | Value_high | Low User | Value_low |
| A | James | 80 | | |
| A | | | John | 10 |
| B | Amy | 90 | | |
| B | | | Tom | 20 |
| C | Nicole | 40 | | |
| C | | | George | 10 |
However it should all be in one row and delete the blank row to look like this
| Product | High User | Value High | Low User | Value Low |
| A | James | 80 | John | 10 |
| B | Amy | 90 | Tom | 20 |
| C | Nicole | 40 | George | 10 |
Thank you