Building a Basic CRM in Google Sheets – A No‑Code Guide for Ops Teams

Building a Basic CRM in Google Sheets – A No‑Code Guide for Ops Teams - Read on the Automate Anything blog.

Google Sheets is surprisingly powerful when you treat it as a lightweight Customer Relationship Management (CRM) system. With a little structure, a few formulas, and a couple of automations, you can track leads, manage pipelines, and keep everyone on the same page—without writing a single line of code. This guide walks you through the essential steps to create a functional CRM in Sheets and shows how Automate Anything can keep the data flowing automatically.


1. Why Use Google Sheets as a CRM?

A spreadsheet‑based CRM isn’t meant to replace a full‑featured enterprise system, but for small‑to‑medium teams it provides enough structure to manage pipelines, segment leads, and measure conversion stages.


2. Setting Up the Core Sheet

2.1 Create the master “Leads” tab

  1. Open a new Google Sheet and rename the first tab Leads.
  2. Define columns (you can always add more later):
Column Purpose
A – Lead ID Unique identifier (auto‑generated)
B – Date Added Date the lead entered the system
C – First Name Prospect’s first name
D – Last Name Prospect’s last name
E – Company Organization name
F – Email Primary contact address
G – Phone Phone number (optional)
H – Source How the lead was acquired (e.g., Webform, Referral)
I – Stage Current pipeline stage (e.g., New, Contacted, Qualified, Proposal, Closed‑Won, Closed‑Lost)
J – Owner Team member responsible for the lead
K – Notes Free‑form text for context
L – Next Action Date When the next follow‑up is due
M – Follow‑up Status Dropdown: “Pending”, “Completed”, “Overdue”

2.2 Add data validation

Data validation keeps the sheet tidy and makes it easier to filter or pivot later.

2.3 Auto‑generate Lead ID

In cell A2, enter the following formula and drag it down:

=IF(B2="","", "L-" & TEXT(ROW()-1,"0000"))  

The formula assigns a simple incremental ID (L‑0001, L‑0002, …) whenever a new row has a date in column B.

2.4 Capture the entry date automatically

In B2, use:

=IF(A2="","", TODAY())  

Sheets will display the current date when the row is first populated. You can later freeze the value with copy‑paste‑as‑values if you prefer a static timestamp.


3. Building Useful Views

3.1 Filtered “My Leads” view

Create a second tab called My Leads. In cell A1, insert:

=FILTER(Leads!A:M, Leads!J:J = "Your Name")  

Replace “Your Name” with the appropriate owner. This view shows only the rows assigned to that person, making daily task lists simple to read.

3.2 Pipeline summary with a pivot table

  1. Highlight the entire Leads table.
  2. Choose Data → Pivot table → New sheet.
  3. Set RowsStage.
  4. Set ValuesLead ID (summarize by COUNTA).

The resulting pivot shows how many leads sit in each stage, giving a quick health check of the pipeline.

3.3 Upcoming actions dashboard

Add a tab Upcoming. Use the following formula to list rows where the follow‑up date is today or in the next three days and the status is still pending:

=QUERY(Leads!A:M, "SELECT A,B,C,E,F,G,I,J,L,M WHERE L >= date '" & TEXT(TODAY(),"yyyy-MM-dd") & "' AND L <= date '" & TEXT(TODAY()+3,"yyyy-MM-dd") & "' AND M = 'Pending' ORDER BY L ASC", 1)  

Now the team can glance at the sheet each morning and see which contacts need attention.


4. Automating Data Capture with Automate Anything

Manual entry is the biggest source of errors. Automate Anything can bridge external forms, email, and other tools directly into your sheet.

4.1 Pull leads from a web form

If you already have a Google Form for lead capture:

  1. In Automate Anything, create a new workflow that triggers “When a new form response is submitted.”
  2. Add an “Add row to Google Sheet” action pointing to the Leads tab.
  3. Map form fields to the corresponding columns (First Name → C, Email → F, Source → H, etc.).

The workflow runs instantly, so the sheet stays up‑to‑date without anyone opening the form admin panel.

4.2 Sync Gmail contacts into the CRM

You can set up a trigger “When a new email arrives from an unknown sender.”

This automation catches inbound interest that would otherwise sit in an inbox.

4.3 Automated reminders for follow‑ups

Create a daily scheduled workflow (Automate Anything uses a scheduled job feature) that:

  1. Queries the Leads sheet for rows where Next Action Date is today and Follow‑up Status is Pending.
  2. Sends a Slack or Teams message to the owner with a concise summary (Lead ID, Name, Company, Action needed).

The result is a gentle nudge that keeps the pipeline moving without relying on manual spreadsheets checks.


5. Maintaining Data Quality

Even with automation, occasional housekeeping keeps the CRM reliable.


6. Extending the Sheet with Simple Formulas

6.1 Age of a lead

In column N (optional), add:

=IF(L2="","", TODAY() - B2)  

This shows the number of days a lead has been in the system, useful for spotting stale prospects.

6.2 Conversion rate per owner

Create a small summary table on a new Metrics tab:

Owner Won Lost Conversion
Alice =COUNTIFS(Leads!J:J,"Alice",Leads!I:I,"Closed‑Won") =COUNTIFS(Leads!J:J,"Alice",Leads!I:I,"Closed‑Lost") =IF(B2+C2=0, "", B2/(B2+C2))

Replace the formulas with the appropriate cell references. The table updates automatically as the sheet grows.


7. Tips for Scaling Beyond the Basics

  1. Separate data and reporting – Keep the raw Leads tab untouched; create dedicated dashboards on other tabs that pull from it via QUERY or IMPORTRANGE if you split workbooks later.
  2. Leverage Google Data Studio – Connect the sheet to Data Studio for richer visualizations (funnel charts, timeline trends) without leaving the Google ecosystem.
  3. Add approval steps – Use Automate Anything to route high‑value leads to a manager for approval before changing the Stage to “Qualified”.
  4. Integrate with accounting tools – When a deal closes, trigger a workflow that adds a line item to your invoicing platform, keeping revenue tracking aligned.

8. Recap: From Zero to a Working CRM

Step What you accomplish
1️⃣ Structure the Leads tab with clear columns and validation.
2️⃣ Use formulas to auto‑populate IDs and timestamps.
3️⃣ Build filtered views, a pivot summary, and an upcoming actions list.
4️⃣ Connect external sources (web forms, email) with Automate Anything to feed data automatically.
5️⃣ Set up daily reminders for follow‑ups using a scheduled workflow.
6️⃣ Perform routine deduplication and archiving to keep the sheet tidy.
7️⃣ Add simple metrics and visual dashboards for ongoing insight.

Following this checklist gives your ops or marketing team a transparent, low‑maintenance CRM that scales with the business’s needs. The combination of Google Sheets’ flexibility and Automate Anything’s no‑code connectors removes the friction of manual data entry while keeping everything visible in a familiar interface.


Ready to put the plan into action? Build your first automation at https://automateanythingsoftware.com.