Is there a tool somewhere that already does this ? I have seen this link:
But no relavent answer was given, there is also links, SO links and converters out there for xlsx to JSON, but have not found anything the other way around
An example conversion:
JSON:
{
"name" : "Joe",
"_id" : 7
}
Excel:
name Joe
_id 7
‘name’ and ‘joe’ being in adjacent but separate cells\columns.
I do not know any generic API to do this work. But, if u already have a “mapper” for your json, you could generate the xls using the apache POI API easily.