Hello guys a have a cuestion,
Expected result:
Code | Detail
1 Product 1
2 Product 2
3 Product 3
4 Product 4
5 Product 5

Hello guys a have a cuestion,
I think that this is the problem, this is how the file comes.
[
{
"Codigo": [
"1",
"2",
"3",
"4",
"5"
],
"Detalle": [
"Product 1",
"Product 2,
"Product 3",
"Product 4",
"Product 5",
]
}
]
and should be transformed to...
[
{
"Codigo": "1",
"Detalle": "Product 1"
],
"Codigo" : "2",
"Detalle": "Product 2",
Help!