Converting JSON data to an Excel format allows for efficient data analysis and manipulation within Excel’s familiar environment. JSON, or JavaScript Object Notation, is a widely used text-based format for storing and transmitting data, especially between a server and web applications. If you have important data in a JSON file that you want to analyze or manage in Excel, you can do so seamlessly using Excel’s ‘Get & Transform’ feature, without the need for any additional code or complex procedures.
Importing JSON Data into Excel
JSON files are structured in a way that is both human-readable and easy for machines to parse. They consist primarily of objects and arrays:
JSON Objects
Objects in JSON are collections of name/value pairs enclosed within curly braces { }. Each pair consists of a field name (in double quotes), followed by a colon, and then the value. For example:
{
"First Name": "Dulce",
"Last Name": "Abril",
"Gender": "Female",
"Country": "United States",
"Age": "32",
"Date": "15/10/2017",
"Id": "1562"
}
JSON Arrays
Arrays are ordered lists of values enclosed within square brackets [ ]. They can contain multiple objects or values, separated by commas. An example of a JSON array containing multiple objects would look like this:
[
{
"First Name": "Dulce",
"Last Name": "Abril",
"Gender": "Female",
"Country": "United States",
"Age": "32",
"Date": "15/10/2017",
"Id": "1562"
},
{
"First Name": "Mara",
"Last Name": "Hashimoto",
"Gender": "Female",
"Country": "Great Britain",
"Age": "25",
"Date": "16/08/2016",
"Id": "1582"
}
]
This structure allows for complex data sets to be represented in a format that is both lightweight and easy to transmit.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →Using Excel’s ‘Get & Transform’ Feature
Excel’s ‘Get & Transform’ tool, formerly known as Power Query, enables you to import and transform data from various sources, including JSON files. This feature is available in Excel 2016, 2019, and Microsoft 365 under the Data tab.
Data tab. In the ‘Get & Transform Data’ group, click on Get Data. From the drop-down menu, select From File, and then choose From JSON.
Import.
If you’re importing data directly from a web API, you can select From Web under the Get Data options and enter the API URL.
To Table in the upper-left corner of the editor.


OK.
Your data will now be displayed with the selected columns expanded into a structured table.

Move, and choose the desired placement option (e.g., Left, Right, To Beginning, or To End).
Close & Load in the upper-left corner under the Home tab to import the data into your Excel worksheet.
The JSON data is now successfully imported into Excel and ready for analysis.

Online Tools for JSON to Excel Conversion
If you prefer a quick conversion without using Excel’s built-in features, several online tools can convert JSON files to Excel format efficiently. One such tool is json-csv.com.
Upload JSON file button to select your JSON file from your local system.

The downloaded file will contain your JSON data in Excel format, ready for use.
Using online converters is a convenient option when you need a quick solution without accessing Excel or when you’re working on a device without Excel installed. However, be cautious with sensitive data, as uploading files to third-party websites can pose security risks.






