Here is how my data looks:
| total_sales | GL account |
| 500 | [Null] |
| 500 | [Null] |
| 5 | 255252 |
| 54 | 255251 |
| etc | etc |
(2 rows totaling 500 each from a different flow)
Desired outcome, which basically requires to move the field names 2 rows down while keeping everything else the same.
| 500 | [Null] |
| 500 | [Null] |
| total_sales | GL account |
| 5 | 255252 |
| etc | etc |