In this blog post, a free solution for converting Excel to JSON is presented.
Excel-to-JSON add-in
Excel to JSON is a Microsoft Excel add-in which can convert Excel to JSON.
Works with
- Excel 2016 or higher, or
- Office 365, or
- Excel Online
Advantage
- Free
- No download
- No installation
- Load only when needed
- Load within Excel
- No need coding in Python/JavaScript (for example)
Excel-to-JSON add-in
How to load this add-in
Video guide
Steps
- Go to Excel 2016, Office365 or Excel Online.
- Insert Tab > My Add-ins.
- In the popup window, go to Office Store
- Search “Excel-to-JSON”.
- Add this add-in
- After loading, go to the “Excel-to-JSON” tab.
- Now you are ready to use this add-in.
How to use this add-in
Video guide
Example
Example Excel sheet - Source
Name | Age | Company |
---|---|---|
David | 27 | WTSolutions |
Ton | 26 | WTSolutions |
Kitty | 30 | Microsoft |
Linda | 30 | Microsoft |
Joe | 40 | Github |
Example JSON - Output
[
{
"Name": "David",
"Age": 27,
"Company": "WTSolutions"
},
{
"Name": "Ton",
"Age": 26,
"Company": "WTSolutions"
},
{
"Name": "Kitty",
"Age": 30,
"Company": "Microsoft"
},
{
"Name": "Linda",
"Age": 30,
"Company": "Microsoft"
},
{
"Name": "Joe",
"Age": 40,
"Company": "Github"
}
]
Top comments (0)