Excel을 JSON으로 변환

역변환이 필요하신가요?
JSON to Excel Converter

Excel Spreadsheet 입력

No data

Import JSON to preview it as a spreadsheet.

0 rows × 0 columns
Memory: 0 B
Showing 0 of 0

JSON 출력

설정

Excel Import Options

Import an Excel file to convert to JSON

Supports .xlsx, .xlsm, and .xls 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은 객체 배열(행당 1개)이 됩니다.
    • 각 행은 헤더를 키로, 셀 값을 값으로 갖는 JSON 객체로 변환됩니다.
    • 날짜/숫자/텍스트가 기대한 형태로 변환되었는지 확인하세요.
  4. 4단계 – JSON 복사/다운로드

    • “복사”로 JSON 배열을 클립보드에 보낼 수 있습니다.
    • “다운로드”로 .json 파일로 저장할 수 있습니다.
    • DB로 가져오기, 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 Excel; double-check them before sending to APIs.
  • For very large sheets, convert smaller ranges first to keep output manageable.
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 modern Excel formats including .xlsx, .xlsm (macro-enabled), and legacy .xls files. Both single and multi-sheet workbooks are supported.

How does sheet selection work?

After importing an Excel file, you can select which sheet to convert using the dropdown in settings. Sheet names are automatically detected from your workbook.

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 Excel file is parsed locally and never sent to any server, ensuring completely private and secure conversion.

Excel을 JSON으로 변환 | JSONSwiss