1
I have a table with a tree of products. Category, Group and Subgroup.
When I export json by excel the file exits without hierarchy: As in this example:
[
{
"id_cat": 4,
"desc cat": "Acessorios para Veiculos",
"id_gr": 1,
"desc gr": "Acessorios Nautica",
"id_sub": 15,
"desc sub": "Bombas"
},
{
"id_cat": 4,
"desc cat": "Acessorios para Veiculos",
"id_gr": 1,
"desc gr": "Acessorios Nautica",
"id_sub": 16,
"desc sub": "Cabos"
},
{
"id_cat": 4,
"desc cat": "Acessorios para Veiculos",
"id_gr": 1,
"desc gr": "Acessorios Nautica",
"id_sub": 17,
"desc sub": "Helices"
},
I need to generate the file this way:
[
{
"category": {
"id": 4,
"name": "Acessorios para Veiculos",
"group": [
{
"id": 1,
"name": "Acessorios Nautica",
"subgroup": [
{
"id": 15,
"name": "Bombas"
},
{
"id": 16,
"name": "Cabos"
},
{
"id": 17,
"name": "Helices"
}
]
},
{
"id": 2,
"name": "Acessorios de Carros",
"subgroup": [
{
"id": 26,
"name": "Exterior"
},
{
"id": 27,
"name": "Interior"
}
]
}
]
}
}
]
can do this with excel ? someone knows the best way for me to create a file in this format through my table ?
Surely you can force an export by writing a text file via VBA. Have you tried something similar? Anyway, it would be good if you edit your question to improve it, including details about how you export currently and even providing a link to an example spreadsheet (to prevent anyone interested in helping you from having to recreate your content for testing).
– Luiz Vieira
Has how to put the code used to generate?
– PauloHDSousa
Luiz, I put an excerpt (small) of the code. But I think I have the solution making an ETL in the javascript itself. I will post.
– sn3fru
Paulo. I generated json just by saving my table in excel in json format (save as, choose format ..)
– sn3fru