Hello,
I need to create a csv table which has a specific format / template with a 3 row header, for each column (like shown above).
StartDate | Status | Call_SID | Interaction_ID |
Start Date | Response Type | Call_SID | Interaction_ID |
{"ImportId":"startDate","timeZone":"Europe/London"} | {"ImportId":"status"} | {"ImportId":"Call_SID"} | {"ImportId":"Interaction_ID"} |
«values» | «values» | «values» | «values» |
This is a specific format we use to import legacy data.
The first three rows are considered header for my platform. As the values are only expected in the 4th row of the file.
I have managed to create the csv all right with the right data in the value cells. All except for the header that I can't manage to have in 3 different rows / cells (all I could manage was to have all strings in the same cell).
Can you please advise on a way to achieve this?