How to Use Coda for Freelancers

Freelancers can turn Coda into a single hub for projects, invoices and client portals. This step‑by‑step guide shows you how to build a project tracker, generate invoices, and share a live client view—all without writing code. Follow the numbered steps, copy the example tables, and you’ll have a working system in under an hour.

Table of contents

1. Set up your Coda workspace

1.1 Create a free account

Go to coda.io and click “Sign up”. Use Google or an email address. The free tier gives you 1,000 rows per doc and basic packs.

1.2 Add the “Projects” template

In the dashboard, click “New doc” → “Template gallery” → “Project Management”. This template includes a task table, timeline view and status column.

Coda template gallery
Choose the “Projects” template from the gallery.

1.3 Rename the doc

Click the document title at the top and type Freelance Hub. This name appears in your browser tab and in shared links.

2. Build a project tracker

2.1 Customize the task table

Open the Tasks table. Add three columns:

  1. Client (text) – the name of the client.
  2. Rate ($/hr) (number) – your hourly rate for that client.
  3. Billable Hours (number) – hours you log each day.
=If([Status]="Complete", [Billable Hours]*[Rate ($/hr)], 0)

Place this formula in a new column called Earned. It calculates revenue only for completed tasks.

2.2 Create a summary view

Click “+ Add view” → “Table” and name it Client Summary. Group rows by Client and add a summary row that totals Earned.

Client summary view
Grouped view shows earnings per client.

2.3 Filter for active projects

In the original Tasks view, add a filter: Status != "Cancelled". This keeps the list clean.

3. Create an invoice generator

3.1 Add an “Invoices” table

Make a new table called Invoices with columns:

3.2 Formula for total

=Sum(Filter(Tasks, Client=thisRow.Client AND [Date] >= thisRow.[Period].Start AND [Date] <= thisRow.[Period].End), Earned)

This pulls every earned amount for the selected period and client.

3.3 Generate a PDF

Insert a Button column called PDF with the action “Export as PDF”. Set the target view to a hidden “Invoice Layout” page that formats the data in a printable style.

Invoice button setup
Button creates a PDF ready for email.

4. Publish a client portal

4.1 Create a “Client View” page

Add a new page named Client Portal. Insert a Table view of Invoices and set a filter: Client = thisDoc.User(). This shows only rows that match the logged‑in user.

4.2 Row‑level permissions

Open the doc settings → “Sharing”. Turn on “Row‑level permissions”. For the Invoices table, set Client column as the “User” column. Now each client sees only their invoices.

4.3 Share the portal link

Copy the page URL and send it to the client. They can view invoices, mark them as paid, and add comments without editing anything else.

Client portal example
Clients log in with a one‑time magic link.

5. Add automation for reminders

5.1 Create a reminder rule

Click “+ Automation” → “When a row matches condition”. Choose Invoices where Paid = false AND Due Date = Today().

5.2 Action: send email

Set the action to “Send email”. Use the following template:

Subject: Invoice {{thisRow.[Invoice #]}} is due today
Body:
Hi {{thisRow.Client}},

Your invoice for {{thisRow.Period}} totals ${{thisRow.[Total ($)]}}. Please pay by end of day.

[Pay now]({{thisRow.[Payment Link]}})

Replace {{thisRow.[Payment Link]}} with a Stripe or PayPal URL stored in a hidden column.

5.3 Test the automation

Mark an invoice as unpaid with a due date of today. Click “Run now” on the automation to confirm the email is sent.

6. Coda vs. competing tools

FeatureCodaNotionAirtable
Row‑level permissionsYes (Pro)NoLimited (Enterprise)
Built‑in formulasExcel‑styleBasicFormula fields
Automation runsUnlimited (Pro)10/mo (Free)100/mo (Free)
API accessFull REST (Free)Beta (Limited)REST + Scripting
Mobile appiOS & AndroidiOS & AndroidiOS & Android
Pricing for freelancers$10/mo (Pro)$8/mo (Personal Pro)$12/mo (Plus)

For freelancers who need client‑specific views and unlimited automations, Coda’s Pro plan offers the best value. Notion is cheaper but lacks row‑level security. Airtable shines with rich field types but caps automation runs on lower plans.

FAQ

Do I need a paid Coda plan as a freelancer?

A free Coda account is enough for a single client or small project. For unlimited docs, automation, and API access, the Pro plan ($10/month) is recommended.

Can I embed invoices from Stripe into a Coda doc?

Yes. Use the Stripe Pack or a simple embed block with the invoice URL. The data syncs automatically.

How secure is client data in Coda?

Coda uses TLS encryption in transit and at rest. You can set row‑level permissions so each client only sees their own rows.

Is Coda mobile‑friendly for on‑the‑go freelancers?

The iOS and Android apps mirror the desktop experience. All tables, buttons and formulas work offline and sync later.

Can I automate reminders for overdue invoices?

Yes. Build a simple automation that triggers an email when the “Due Date” column passes and the “Paid” box is unchecked.

With these steps you now have a live project tracker, instant invoice generator, and secure client portal—all inside Coda. Keep the doc updated, add new automations as you grow, and you’ll spend less time on admin and more time on billable work.

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