Конвертер Excel в JSON

Нужна обратная конвертация?
JSON to Excel Converter

Ввод Spreadsheet

Import a spreadsheet file to convert to JSON

Supports .xlsx, .xlsm, .xls, and .csv files

Вывод JSON

Настройки

Spreadsheet Import Options

Import a spreadsheet file to convert to JSON

Supports .xlsx, .xlsm, .xls, and .csv files

Как конвертировать Excel в JSON онлайн — пошаговое руководство

Используйте этот конвертер Excel → JSON, чтобы преобразовать таблицы в JSON‑массивы или объекты для API, баз данных и веб‑приложений.

  1. Шаг 1 — Загрузите файл Excel

    • Загрузите файл .xlsx, .xlsm или .xls.
    • Слева появится предпросмотр выбранного листа.
    • Для CSV используйте инструмент CSV→JSON или сначала конвертируйте в Excel.
  2. Шаг 2 — Настройте параметры конвертации

    • Выберите лист (для книг с несколькими листами).
    • Включите «Первая строка содержит заголовки», чтобы использовать первую строку как ключи JSON.
    • При необходимости укажите диапазон (например, A1:D100), чтобы конвертировать только часть листа.
  3. Шаг 3 — Проверьте JSON‑вывод

    • С заголовками JSON будет массивом объектов (по одному на строку).
    • Каждая строка становится объектом JSON: заголовки — ключи, значения ячеек — значения.
    • Проверьте, что даты, числа и текст корректно представлены в JSON.
  4. Шаг 4 — Скопируйте или скачайте JSON

    • Нажмите «Копировать», чтобы отправить JSON‑массив в буфер обмена.
    • Нажмите «Скачать», чтобы сохранить как файл .json.
    • Импортируйте JSON в базы данных, отправляйте в API или используйте во фронтенде.

Quick tips for Excel to JSON

  • Keep one header row at the top so each JSON object gets consistent keys.
  • Dates and numbers are read as they appear in the spreadsheet; double-check them before sending to APIs.
  • Turn off auto-sync when you want to batch several spreadsheet edits, then use the update button to refresh the JSON once.
Example: Excel spreadsheet to JSON array
// Excel spreadsheet (with headers)
| Name        | Email              | Age | Active |
|-------------|--------------------|-----|--------|
| Maeve       | [email protected] | 28  | true   |
| Alex        | [email protected]   | 32  | false  |

// JSON output
[
  {
    "Name": "Maeve",
    "Email": "[email protected]",
    "Age": 28,
    "Active": true
  },
  {
    "Name": "Alex",
    "Email": "[email protected]",
    "Age": 32,
    "Active": false
  }
]

Related Excel & JSON tools

Work with spreadsheet data and JSON using these complementary conversion and formatting tools.

Часто задаваемые вопросы

What Excel formats are supported?

This tool supports .xlsx, .xlsm (macro-enabled), legacy .xls, and .csv files. Excel workbooks can contain one or many sheets, while CSV files open as a single sheet preview.

How does sheet selection work?

After importing a spreadsheet file, you can select which sheet to convert using the dropdown in settings. Sheet names are detected automatically from Excel workbooks, and CSV files are loaded as a single sheet.

Can I convert specific cell ranges?

Yes. Use the range option in settings to specify a cell range like 'A1:D10'. Leave it empty to convert the entire used range of the selected sheet.

How are headers handled?

When 'First row contains headers' is enabled, the first row values become JSON object keys. When disabled, generic keys like 'Column1', 'Column2' are used.

Is my data secure?

Yes, all data processing happens entirely in your browser. Your spreadsheet file is parsed locally and never sent to any server, ensuring completely private and secure conversion.