Excel zu JSON Konverter

Benötigst du die umgekehrte Konvertierung?
JSON to Excel Converter

Spreadsheet Eingabe

Import a spreadsheet file to convert to JSON

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

JSON Ausgabe

Einstellungen

Spreadsheet Import Options

Import a spreadsheet file to convert to JSON

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

Excel online in JSON konvertieren – Schritt-für-Schritt-Anleitung

Mit diesem Excel-zu-JSON-Konverter wandeln Sie Tabellen in JSON-Arrays oder -Objekte um – für APIs, Datenbanken und Web-Apps.

  1. Schritt 1 – Excel-Datei hochladen

    • Laden Sie eine .xlsx-, .xlsm- oder .xls-Datei hoch.
    • Für das ausgewählte Blatt erscheint links eine Vorschau.
    • Für CSV nutzen Sie ein CSV-zu-JSON-Tool oder konvertieren Sie zuerst in Excel.
  2. Schritt 2 – Konvertierungsoptionen einstellen

    • Wählen Sie das Arbeitsblatt (bei Arbeitsmappen mit mehreren Sheets).
    • Aktivieren Sie „Erste Zeile enthält Überschriften“, um die erste Zeile als JSON-Keys zu verwenden.
    • Optional: Bereich angeben (z. B. A1:D100), um nur einen Teil zu konvertieren.
  3. Schritt 3 – JSON-Ausgabe prüfen

    • Mit Überschriften ist JSON ein Array aus Objekten (eins pro Zeile).
    • Jede Zeile wird zum JSON-Objekt mit Spaltenüberschriften als Keys und Zellenwerten als Values.
    • Prüfen Sie, ob Datum, Zahlen und Text im JSON korrekt formatiert sind.
  4. Schritt 4 – JSON kopieren oder herunterladen

    • Nutzen Sie „Kopieren“, um das JSON-Array in die Zwischenablage zu legen.
    • Nutzen Sie „Download“, um als .json-Datei zu speichern.
    • Importieren Sie das JSON in Datenbanken, senden Sie es an APIs oder nutzen Sie es im Frontend.

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.

Häufig gestellte Fragen

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.