Use case

Convert Excel to Parquet locally.

Bendit helps you turn spreadsheet exports into clean Parquet files for analytics, automation and downstream data work.

Typical cases

  • Excel files used as poor data exchange format
  • Repeated imports into analytical tools
  • Need smaller, typed, columnar output

Example SQL

select
  try_cast(order_id as integer) as order_id,
  trim(customer_name) as customer_name,
  try_cast(order_date as date) as order_date,
  try_cast(amount as decimal(18,2)) as amount
from imported_excel;

How Bendit helps

  1. Import the file directly into the local workbench.
  2. Inspect columns, types and preview rows.
  3. Transform with DuckDB SQL.
  4. Export a clean CSV or Parquet result.