Convert JSON as a data source to a spreadsheet Leave feedback
The following code snippet shows how to convert a JSON file to a spreadsheet. It means that you use this JSON as the data source and convert it to a spreadsheet:
using (Converter converter = new Converter("data.json"))
{
SpreadsheetConvertOptions options = new SpreadsheetConvertOptions();
converter.Convert("converted.xlsx", options);
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.
