JSON to Excel is a Microsoft Excel add-in which can convert JSON to Excel within Excel Environment, both Flat and Nested JSON mode are supported.
https://json-to-excel.wtsolutions.cn
This add-in works in: Excel 2013 Service Pack 1 or later, Excel 2016 for Mac, Excel 2016 or later, Excel Online, Excel for Mac, Office 365 etc.
- Open a new datasheet in Excel 2013/2016 or Excel Online or Office 365.
- Home Tab or Insert Tab > Add-ins
- In the search box, type in "JSON-to-Excel"
- Follow the instructions on the screen to install the add-in, and you will see an button JSON-to-Excel added to your Home Tab.
- Home Tab > JSON to Excel > Convert
- Now you are ready to use this add-in.
- Prepare your JSON data
- Fill the text area of JSON-to-Excel with your JSON data
- Select conversion mode , and click on Go button
[
{
"name": "John",
"contact": {
"email": "[email protected]",
"phone": "1234567890"
}
},
{
"name": "Jane",
"contact": {
"email": "[email protected]",
"phone": "0987654321"
}
}
]
with Flat JSON mode
name | contact |
---|---|
John | {"email":"[email protected]","phone":"1234567890"} |
Jane | {"email":"[email protected]","phone":"0987654321"} |
with Nested JSON mode
name | contact.email | contact.phone |
---|---|---|
John | [email protected] | 1234567890 |
Jane | [email protected] | 987654321 |