CNCoreNova Docs

Spreadsheet modernization

Convert XLS to XLSX before worksheet parsing, migration, or structured AI use

Legacy XLS workbooks can contain operational tables, financial models, inventories, schedules, and reference data. XLSX provides a modern intermediate package for libraries that inspect worksheets, typed cells, formulas, styles, and table-shaped content.

Good-fit scenarios

Workbook archive upgrades

Normalize historical spreadsheets while retaining an editable workbook result for review.

Data preparation

Hand XLSX to a downstream step that selects sheets, ranges, headers, and typed values.

Application compatibility

Accept XLS uploads from customers when the normal processing library expects XLSX.

AI-assisted analysis

Prepare a workbook for structured extraction before summarization, question answering, or anomaly review.

Recommended pipeline

XLSCoreNova APIXLSXsheet/range selectionCSV or JSONanalytics or AI

For RAG, do not blindly embed a whole workbook as one text block. Identify the relevant sheet, preserve row and column headers, attach workbook and sheet metadata, and choose whether formulas, displayed values, or both should be available to the downstream system.

Request

curl --request POST 'https://api.corenovacloud.com/v1/conversions' \
  --header "Authorization: Bearer ${CORENOVA_API_KEY}" \
  --header 'Idempotency-Key: inventory-workbook-2008-0042' \
  --form '[email protected]'

Quality checks

Known exclusions: XLS external-workbook references and documented database-formula cases are rejected. VBA preservation is disabled, and macros are never executed.