DEV Community

Arctype Team for Arctype

Posted on • Updated on • Originally published at arctype.com

Do Product Led Growth Companies Have Higher Revenue Retention?

After serving two years in the Peace Corps, I knew I wanted to join a startup, but I immediately faced a dilemma—there are too many startups from which to choose. Some early teams—like Arctype—do distinguish themselves through their overwhelming focus on product experience, which is why today, I'm going to use SQL to analyze the performance of public SaaS companies that have historically shared this focus. Through this analysis, I hope to answer the following question: are these so-called "product led growth" companies truly better? Did I make the right long-term financial decision in joining Arctype?

According to product adoption platform Pendo, product led growth (PLG) relies upon the product itself—its features, performance, and virality—to do much of the “selling”. At Arctype, we are following this strategy by focusing on the speed and developer experience of both our query editor and SQL IDE to convert users.

Naturally I was curious—are PLG companies truly better SaaS businesses? In this post I will pull data from our friends at Public Comps into Arctype to dissect the revenue, founder ownership, and payback periods of PLG companies versus average SaaS businesses. I will specifically compare these metrics between PLG and non-PLG companies:

  • Net Revenue Retention - how much customers stick around
  • Founder Ownership at IPO - how much dilution founders take
  • CAC Payback Periods - how cash efficient the business is

Get Financial Data for Public SaaS Companies

To assemble the data for this analysis, first we have to trawl through every S-1 and 10-K and copy-paste the financials out of these 100 page PDFs into a spreadsheet. Just kidding! Public Comps pulls all this data so you don’t have to. They even provide a huge set of filters, nice formatting, exports for deeper analysis, and more. We’ll use the “PLG” filter to get Product Led Growth companies and the B2B SaaS filter to pull a broader set for comparison.

Public Comps dashboard and available filters.

With our filters setup we can download the data as a CSV and upload it to Arctype to write SQL. For quick tasks, I usually create a SQLite database and import the CSV file containing my dataset. Want to play with the data in this post? Download the preview CSV here and access the full dataset on Public Comps.

Creating a SQLite database for quick analysis in Arctype.

One of the key metrics, Net Dollar Retention, is reported as a number with a percent sign appended to it and is shown as Text in the screenshot below. Handling conversion for this column will be easy enough in SQL, so it can remain set as Text. On the other hand, by setting the CAC payback column datatype to Number at this stage it won’t have to be CAST later on in our analysis.

Adjusting data types for easier analysis during the CSV Import.

Defining Net Revenue Retention

Now that we’ve successfully imported the PublicComps dataset, we need to figure out how the data can be interpreted to prove or disprove our hypothesis. In this case, Net Revenue Retention (NRR) measures the percentage of recurrent revenue from existing customers. If every customer pays a software company the exact same amount as it did the previous year, the company would have 100% NRR. In an ideal world, customers pay more for a software product every year because the product is continually being developed and improved, leading customers to add more users or upgrade their plans. Investors love to see NRR above 100% because it means that a business can grow without selling any new software—existing customers simply pay more!

NOTE:Net Revenue Retention and Net Dollar Retention are slightly different. There is no GAAP standard for how they are defined. Some investors define Net Dollar Retention as the percentage revenue change of a customer over their first 12 months and Net Revenue Retention as the percentage change in revenue for all customers over the previous (trailing) 12 months. At any rate, most companies report Net Revenue Retention and call it Net Dollar Retention.

Do Product Led Growth Companies have Higher Revenue Retention?

A PLG strategy naturally lends itself to higher retention because the product should include multiple upgrade pathways and viral hooks which draw users deeper into the experience and lead them to pay more and upgrade.

For the sample companies from Public Comps, we can compare the average NRR of PLG companies with the average NRR of non-PLG companies in our dataset. Notice that since NRR is not a standard metric, companies report it differently—or may not report it at all—so we exclude companies for which we do not have data. I can also deal with that pesky percent sign and Text datatype by using ROUND in SQLite to convert the string to a number.

    SELECT
        COUNT(*) as num_companies,
        AVG(ROUND(publiccomps.net_dollar_retention)) as avg_nrr
    FROM
        publiccomps
    WHERE
        plg = 'Yes'
        AND ROUND(publiccomps.net_dollar_retention) > 0
Enter fullscreen mode Exit fullscreen mode

Net Dollar Retention for PLG companies in this dataset

The 11 PLG companies in our dataset have an average NRR of 122% while the 15 non-PLG companies have an average NRR of 129%. A wash!

Products that sell themselves do not seem to do any better in retaining customers than products which are sold top down or through other means rather than user adoption and upgrades.

Founder Ownership in Product Led Growth Companies

Fair enough, but what about ownership? We know that capital-efficient companies can reward shareholders at IPO with greater ownership stakes because they need less capital during fundraising—and thus less dilution—to achieve their goals. Dilution is always debated among companies that raise multiple rounds. To see an amazing visualization of the impact (or punch) that dilution has on the initial ownership at a company, check out this classic visualization from Techcrunch.

Use spreadsheet editing to insert one off data from different sources.

Taking inspiration from Sammy Abdullah at Blossom Street, as well as data from Jason Lemkin at SaasStr, Alex Clayton at Meritech, and Craft we can compile founder ownership percentages at IPO. To fill the gaps, we can also simply search for the S-1s–the SEC document that companies file before they go public–where the major shareholders of a company are reported.

With our ownership data pulled into our existing Public Comps dataset in Arctype, let’s run a similar query to the one above. In cases where the original founders did not have a significant stake or were no longer with the company, we will instead use the CEO’s ownership stake.

    SELECT
        COUNT(*) as num_companies,
        AVG(publiccomps.ownership) as avg_ownership
    FROM
        publiccomps
    WHERE
        plg = 'No'
        AND publiccomps.ownership > 0
Enter fullscreen mode Exit fullscreen mode

Comparing the results of this query, the stark contrast between PLG and non-PLG companies is instantly perceivable. The 10 PLG companies have an average founder ownership of 21% while the 20 non-PLG companies have an average founder ownership of 12%. In fact, the founders of PLG companies have 70% greater ownership at IPO than the founders of non-PLG companies.

Payback Periods for SaaS Companies

Greater founder ownership at IPO should mean that the business is more capital-efficient in its growth. Luckily, there is no need to guess—payback period is the number of months that a business needs to recapture the cost of acquiring a single customer. For example, if we spend $100,000 to acquire a customer that pays us $100,000 a year,our payback period is twelve months. In order to determine customer acquisition cost, CFOs will carefully calculate how many fractional sales reps, ads, solutions engineers, and other associated costs.

A shorter payback is especially important for modern software companies. For example, if my company’s payback period is 6 months, and our competitor’s payback period is 12 months, my company can effectively acquire twice as many customers for the same amount of money. Thus, having a shorter payback period essentially means that my company can grow faster—especially crucial in today’s hyper-growth environment.

You know the drill by now. Public Comps has derived the payback periods from quarterly reporting data of the companies in its dataset, so we can query that and compare.
Querying for payback periods from public SaaS companies

In fact, payback periods for PLG companies in this dataset are right around 15 months. Thomas Tunguz from Redpoint describes this as the median payback period for SaaS businesses. Meanwhile, non-PLG companies have much longer payback periods (around 22 months), which supports our theory that PLG companies are more capital efficient and supports our earlier conclusion that PLG companies have higher founder ownership as a result.

Capital Efficiency and Ownership are Better with PLG

In this post we pulled an amazing dataset from Public Comps—the go to service for making investment decisions in public SaaS companies—and loaded it into Arctype to run queries and draw conclusions about product led growth as a strategy. This dataset was relatively small but as more SaaS companies grow and ultimately go public, we will learn more about what levers to pull and what outcomes are possible.

In this initial analysis, I was surprised to learn that revenue retention is not materially impacted by a product-led growth strategy. On the other hand, the correlation between ownership levels and capital efficiency is significantly more pronounced than expected. Given this, I see every reason to continue putting our product first at Arctype with the goal of building the best SQL client in the world. And for me – well, I am feeling pretty great about my new role as a developer advocate for SQL users everywhere.

Top comments (0)