Quick Start

Pick the option that sounds most like you. Codcel will guide you from your current tools to production-ready code and apps.

Select the correct programming language below for the correct quick start instructions.

Quick Start for Excel Users

Start from Excel and let Codcel generate apps, APIs, and code for you.

Step 1: Download Codcel Desktop

Get the Codcel desktop application for Windows, macOS, or Linux from our downloads page.

Step 2: Tag your Excel file

Add tiny inline tags so Codcel knows what your inputs and outputs are — without changing your spreadsheet.

Show step-by-step tagging
1

Understand the sheet

This example is intentionally tiny: a coffee Price, a fixed Tax, an optional Tip, and a final Cost.

Why this matters: Codcel doesn't need you to redesign anything — it just needs to know which cells are "inputs" and which cell is the "output".

Before tagging (your spreadsheet as-is)
Excel example before adding Codcel tags
2

Check the Cost formula

The total cost is just:

Cost = Tip + (Price × Tax) + Price

In Excel rounding to 2 decimal places:

=ROUND(D4+(D2*D3)+D2,2)

Why this matters: Codcel will turn this exact logic into real code — but it must know which values your app/API should accept as inputs.

3

Add tiny tags (what to do)

Add inline tags next to the cells you want Codcel to treat as inputs and outputs:

  • *I*D2*Tag the coffee price as an input (because users will change it).
  • *ID*D4*Tag the tip as an input with a default (so the API/UI can start from 0).
  • *O*D6*Tag the cost cell as the output (what your API returns).

Why this matters: these tags tell Codcel which cells become API parameters, which become defaults, and which values should be returned as results.

After tagging (Codcel can now generate the code)
Excel example after adding Codcel input and output tags

That's it — you now have inputs and an output. Next, you'll place the file into Codcel and choose what to generate.

Video

Step 3: Generate a Full UI

Drag your Excel file into the Codcel Desktop and generate a full Web User Interface in minutes.

Show step-by-step UI generation

Step-by-step instructions coming soon. In the meantime, please watch the video for a complete walkthrough.

Video

Step 4: Run a Full UI

Learn how to run the generated Full UI locally on your computer.

Show step-by-step running instructions

Step-by-step instructions coming soon. In the meantime, please watch the video for a complete walkthrough.

Video

Step 5: Test your Excel Spreadsheet

Learn how to run individual and bulk tests against your Excel Spreadsheet in the running full Web UI.

Show step-by-step testing instructions

Step-by-step instructions coming soon. In the meantime, please watch the video for a complete walkthrough.

Video