How To Build A Simple Referral Tracker Spreadsheet In Google Sheets

Direct Connect Brokerage • March 4, 2026

Share this article

If you're a referral tracker spreadsheet person, you don't need fancy software to stay organized. You need a clean system that answers three questions fast: Where did this referral come from, what's happening now, and did I get paid?

That matters even more if you're a Referral-Only Real Estate Agent . You're not chasing showings or writing contracts, but you still need tight records for follow-ups, referral agreements, and thank-you rewards.

The good news: Google Sheets can act like your "paper trail," without becoming another job.

The referral tracker spreadsheet schema (column headers that actually work)

Start with a single tab named Referrals . Keep the columns simple enough to fill out in under a minute, but detailed enough to prevent "Wait, what happened with this one?" later.

Here's a practical schema you can copy as your header row (Row 1):

Column header What it means (plain English)
Referral ID Unique ID for each referral, so you can search and stay consistent
Date Received The day you got the lead or intro
Referrer Name Who sent you the person (past client, friend, etc.)
Referrer Type Category for the referrer (helps you see patterns)
Client Name First and last name (or "Buyer Smith" if you prefer privacy)
Need Buy, Sell, Invest, Rent, Other
Market City + State (example: Tampa, FL)
Receiving Agent The agent you connected the client to
Receiving Brokerage The agent's brokerage
Status Where the referral stands right now
Expected Close Date Your best guess based on the agent's timeline
Est. Referral Fee ($) Your estimated referral income for this deal
Paid Date Date your referral fee hit your account (or was marked paid)
Reward Amount ($) Gift card or thank-you cost, if you do this
Reward Paid? Yes or No
Notes Anything you'll forget in 30 days

A quick compliance note: referral rules can vary by state, so it's smart to check your state's licensing guidance and your brokerage policy. For example, New Jersey has a helpful overview in the NJ Referral Agent licensing FAQs , and Texas explains referral-focused models through its TREC guidance on referral businesses and LFROs.

If you're building a referral-based business under a brokerage model, it also helps to understand how referral fees are handled and paid; see the referral-only real estate agent FAQs.

Step-by-step: build it in Google Sheets (with dropdowns and clean data)

Create a new Google Sheet, then rename Sheet1 to Referrals .

Next, set up the basics so your sheet stays usable once you have 50 to 200 referrals logged.

1) Add headers, freeze, and turn on filters

  1. Paste the column headers into Row 1.
  2. Freeze the header row: View → Freeze → 1 row
  3. Add filters: Data → Create a filter
  4. Format key columns:
    • Dates (Date Received, Expected Close Date, Paid Date): Format → Number → Date
    • Currency (Est. Referral Fee, Reward Amount): Format → Number → Currency

2) Add Status dropdown values (so everything sorts cleanly)

Click the Status column cells (for example, J2:J), then:

  • Data → Data validation → Add rule
  • Criteria: Dropdown
  • Add these values (keep them in this order):
    • New
    • Contacted
    • Converted
    • Reward Due
    • Paid

Tip: "Converted" can mean the receiving agent confirmed the client is active and moving forward (for example, under contract). "Reward Due" is a nice checkpoint for when you want to send the thank-you.

3) Add a Yes/No dropdown for Reward Paid?

Select O2:O, then:

  • Data → Data validation → Add rule → Dropdown
  • Values: Yes , No

4) Create a simple Referral ID (then lock it)

In A2 (Referral ID), paste this formula:

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

Then fill it down for as many rows as you want.

Because IDs shouldn't change, lock them in:

  1. Select column A (starting at A2).
  2. Copy.
  3. Paste values only: Edit → Paste special → Values only

If you sort your sheet later, a formula-based ID can shift. Pasting values keeps your IDs stable.

5) Enter a few realistic sample rows

Your first entries might look like this:

Referral ID Date Received Referrer Name Referrer Type Client Name Need Market Receiving Agent Receiving Brokerage Status Expected Close Date Est. Referral Fee ($) Paid Date Reward Amount ($) Reward Paid? Notes
R-260304-0001 3/4/2026 Jamie R. Past Client Alex Morgan Buy Orlando, FL Pat Lee Suncoast Realty Contacted 5/15/2026 2500 50 No Intro text sent, agent call scheduled
R-260306-0002 3/6/2026 Chris T. Friend Dana Price Sell Tampa, FL Robin Kim Bay Homes Group Reward Due 3/28/2026 3200 3/29/2026 100 No Closed, send gift card

Formulas for totals by referrer, totals by status, and unpaid rewards (plus a no-chart dashboard)

Add a second tab named Summary . This becomes your "one look" page.

Quick KPI boxes (simple, reliable formulas)

In Summary, you can create labels in Column A and formulas in Column B:

  • Total referrals logged (B2)
    =COUNTA(Referrals!A2:A)
  • Active referrals (not Paid) (B3)
    =COUNTIF(Referrals!J2:J,"<>Paid")
  • Referral fees paid this month (B4)
    =SUMIFS(Referrals!L:L,Referrals!J:J,"Paid",Referrals!M:M,">="&EOMONTH(TODAY(),-1)+1,Referrals!M:M,"<="&EOMONTH(TODAY(),0))
  • Unpaid rewards total (B5)
    =SUMIFS(Referrals!N:N,Referrals!O:O,"No",Referrals!J:J,"Reward Due")

That last number is the one that keeps your reputation clean. If it creeps up, you know what to handle next.

Totals by referrer (copy/paste-ready)

On the Summary tab (for example, starting in A8), paste:

=SORT(QUERY(Referrals!A1:O,"select C, count(A), sum(L) where C is not null and J='Paid' group by C label count(A) 'Paid Deals', sum(L) 'Paid Referral Fees ($)'",1),2,false)

This outputs a tidy table: referrer name, how many paid deals, and total paid fees.

Totals by status (so your pipeline is obvious)

On the Summary tab (for example, starting in E8), paste:

=QUERY(Referrals!J1:J,"select J, count(J) where J is not null group by J label count(J) 'Count'",1)

A clean list of "rewards I still owe"

Anywhere on Summary, paste:

=FILTER(Referrals!A:O,Referrals!J:J="Reward Due",Referrals!O:O="No")

Optional enhancements (worth 5 extra minutes)

Conditional formatting (color that tells the truth):

  • Select the full data range (A2:P).
  • Go to Format → Conditional formatting .
  • Add rules like:
    • "Text is exactly" Reward Due (apply to range J2:J), set a yellow fill.
    • "Text is exactly" Paid , set a light green fill.
    • "Date is before" Today for Expected Close Date (K2:K) and use a light red fill, then follow up with the agent.

Protect your formulas and headers:

  • Protect Row 1 and your Summary formulas: Data → Protect sheets and ranges
  • This helps if you ever share the sheet with an assistant or partner.

Lock down dropdown consistency:

  • In each data validation rule, turn on "Reject input" so typos don't create fake statuses.

Conclusion

A simple referral tracker spreadsheet is like a receipt folder for your referral business. It keeps stories from turning into guesses. Once your columns, dropdowns, and Summary formulas are in place, your sheet becomes a lightweight system you can trust.

Set aside 30 minutes, build it once, then keep it updated after every intro and every status change. Your future self will thank you, and your rewards due list won't sneak up on you.

Recent Posts

By Direct Connect Brokerage March 3, 2026
Ever had a referral stall because the client "never heard from them," or because the receiving agent didn't know the basics? A clean handoff isn't fancy, it's clear . When you're a Referral-Only Real Estate Agent, your reputation rides on what happens after you introduce someo...
By Direct Connect Brokerage March 2, 2026
A referral can feel like handing someone a gift. But if the box is empty, your name is still on the tag. For a Referral-Only Real Estate Agent , the handoff is the work. That means lead qualification matters more than ever, because you don't get a second chance to "clean up" a...
By Direct Connect Brokerage March 1, 2026
Switching brokerages when you're referral-based feels simple until it isn't. A loose end from your old office can turn into a payment delay, a branding complaint, or an awkward call with a past client. This agent onboarding checklist is built for experienced agents who don't w...
By Direct Connect Brokerage February 28, 2026
A strong referral is like handing someone a gift-wrapped listing or buyer, with a bow on top. Still, many licensed agents accept the first number they hear, then wonder why the payout feels light. If you're a Referral-Only Real Estate Agent , your income depends on one skill m...
By Direct Connect Brokerage February 27, 2026
E&O Insurance for Referral-Only Agents: What Coverage You Need If you're a referral-only agent, it's easy to think, "I'm not writing offers or reviewing inspections, so I've got no exposure." That feeling makes sense, but it's also where people get surprised. E&O ins...
By Direct Connect Brokerage February 26, 2026
Buying your own home is expensive, even when you "know the business." So it's natural to ask if you can earn a home purchase referral fee on the deal you're already doing anyway. You can, in many cases, but only if you treat it like any other referral. That means the right lic...
By Direct Connect Brokerage February 25, 2026
Keeping your license active without running showings and negotiations can feel like owning a car you rarely drive. You still have to register it, maintain it, and keep it legal, but you don't need premium fuel. That's the heart of referral-only agent costs in 2026. Your budget...
By Direct Connect Brokerage February 24, 2026
If you're a receiving agent list person, you're not "just collecting names." You're building coverage, like a carrier network. When a logistics or ecommerce operator needs a warehouse in Reno, cold storage in Atlanta, or a hazmat-ready site near Houston, you need the right spe...
By Direct Connect Brokerage February 23, 2026
If you're a Referral-Only Real Estate Agent , your business lives or dies on follow-up. Not the kind where you "try to remember" to text someone next week, but the kind that runs even when you're at your day job, traveling, or taking a real break. The goal of a solid referral...
By Direct Connect Brokerage February 22, 2026
Referral income used to feel simple. You sent a friend to an active agent, the deal closed, and a referral check showed up. In 2026, buyer broker agreement rules make that same referral more paperwork-heavy and more sensitive to how compensation is described. The upside is tha...
Show More