How to Use Coda for Writers

Writers looking for a flexible, all‑in‑one workspace often ask how to use Coda. This guide shows you step‑by‑step how to set up outlines, track drafts, collaborate with editors, and export finished work. All instructions focus on real‑world Coda features, so you can start writing today.

Table of contents

1. Set up your writer’s doc

1.1 Create a new doc

Log in to Coda, click New doc, and choose the “Blank” template. Name it My Novel or whatever fits your project.

Coda new doc screen
Click “New doc” and pick a blank canvas.

1.2 Add basic pages

Use the left‑hand sidebar to add pages for Outline, Drafts, Research, and Notes. Click the plus sign (+) at the bottom of the sidebar, type the page name, and press Enter.

1.3 Set permissions

Open the doc menu (three dots) → Share. Add your editor’s email and give them Comment access. Keep the default Can edit for yourself.

2. Build a dynamic outline

2.1 Create an outline table

On the Outline page, type /table and select “Table”. Name the table StoryOutline. Add columns:

Outline table
StoryOutline table with columns for chapter tracking.

2.2 Use formulas for progress

Add a column TotalWords with the formula:

=Sum(thisTable.Filter(Status="Done").WordGoal)

This automatically sums word goals for finished chapters.

2.3 Link to draft sections

In the Drafts page, create a Section for each chapter. In the outline table, add a Link column with the formula:

=Hyperlink("drafts#" + thisRow.Chapter, "Go to draft")

Clicking the link jumps you to the corresponding draft section.

3. Manage drafts and revisions

3.1 Set up a draft table

On the Drafts page, insert another table called Manuscript with columns:

3.2 Enable version increments

Add a button column “New version” with the action:

ModifyRows(thisRow,
  Text, thisRow.Text,
  Version, thisRow.Version + 1,
  Last edited, Now()
)

Each click saves a snapshot while keeping the previous version visible.

3.3 View revision history

Open the doc menu → Version history. Coda lists every change with timestamps. You can restore a previous state with a single click.

4. Collaborate with editors and beta readers

4.1 Add comment blocks

Select any cell or text, then click the speech‑bubble icon on the right. Type your comment. Editors receive email notifications if you @mention them.

4.2 Create a review checklist

Insert a new table EditorChecklist with columns:

Sample items:

4.3 Use the “Publish to web” feature for beta readers

Doc menu → Publish → toggle “Publish to web”. Copy the link and share it. Readers can view the doc without editing rights.

5. Export and publish

5.1 Export to Word

When the manuscript is ready, go to the doc menu → ExportMicrosoft Word (.docx). Coda retains headings, tables, and images.

5.2 Export to PDF

Choose Export → PDF. In the options, set “Page size” to A5 for novel‑size printing.

5.3 Direct publishing to Substack

Insert a /button with the action:

RunActions(
  OpenWindow("https://substack.com/api/v1/posts/create?title=" + thisRow.Title + "&content=" + thisRow.Text)
)

This opens a new tab pre‑filled with your draft, ready for posting.

6. Coda vs. competing tools

The table below compares Coda with two popular writing platforms: Scrivener and Google Docs. Numbers are based on the free tier limits (June 2026).

FeatureCoda (Free)Scrivener (30‑day trial)Google Docs (Free)
Row limit1,000 rows per tableUnlimited (desktop only)Unlimited cells
Rich‑text formattingFull (headings, tables, embeds)Full (but offline)Basic
Real‑time collaborationYes, up to 50 guestsNo (needs file sharing)Yes, unlimited
Version history30 days retainedManual snapshotsUnlimited
Export optionsDOCX, PDF, HTMLDOCX, PDF, RTFDOCX, PDF, ODT
Price for full features$10/mo (Pro)$49 (one‑time)Free

7. Frequently asked questions

Do I need a paid Coda plan to write a novel?

No. The free plan lets you create up to 1,000 rows per table and 50 docs, which is enough for most short‑form projects. For a full‑length novel you may hit the row limit, so a Pro or Team plan is recommended.

Can I export my Coda manuscript to Word?

Yes. Use the “Export” button in the doc menu and choose Microsoft Word (.docx). The export keeps headings, tables, and images.

How does Coda handle version history?

Coda saves every change automatically. The “Version history” panel lets you view, name, or restore any past version.

Is it possible to collaborate with an editor in real time?

Absolutely. Invite editors via email, assign them Comment or Edit permissions, and they can leave inline comments or suggest changes.

Can I embed research links and PDFs directly in a Coda doc?

Yes. Use the “Embed” block or paste a URL; Coda will render the content inline. PDFs appear as viewer blocks you can scroll through.

Coda gives writers a single place for outlines, drafts, research, and feedback. Follow the steps above, experiment with formulas, and you’ll have a living manuscript that grows with your story.

Get tools like this in your inbox
One useful tool per week. No spam. Unsubscribe anytime.