Category: Transform / Web
This action splits a JSON array into rows.
| Setting | Description |
|---|---|
| Column | Select the column that contains the JSON array structure to split. |
Split the following JSON array into individual rows.
All text is contained within a single cell.
[
{
"name": "Doug",
"id": 7,
"dept": "Accounting"
},
{
"name": "Sue",
"id": 2,
"dept": "HR"
}
]
Split into individual table rows.
{
"name": "Doug",
"id": 1,
"dept": "Accounting"
}
{
"name": "Sue",
"id": 2,
"dept": "HR"
}
Column: Employees