Hello,
I have two different rows of data which have exactly the same header. How do I merge them into one output which contains both rows.
Data 1:
| time | cost | resource | account number |
| 1 | 2 | 3 | 4 |
Data 2:
| time | cost | resource | account number |
| 3 | 4 | 5 | 6 |
I want to get here (Merged data):
| time | cost | resource | account number |
| 1 | 2 | 3 | 4 |
| 3 | 4 | 5 | 6 |
Thanks in advance