LTV (Lifetime Value)
Lifetime Value (LTV or CLV) is the predicted total revenue a business will earn from a single customer over the entire duration of their relationship. It is a forward-looking metric used to determine how much to spend on acquiring customers and which customer segments are most valuable.
§ 1 Definition
Lifetime Value (LTV), also called Customer Lifetime Value (CLV or CLTV), is a prediction of the net profit attributed to the entire future relationship with a customer. It estimates the total revenue a business can reasonably expect from a single customer account over the full duration of their engagement. LTV is calculated using historical data: average purchase value, purchase frequency rate, average customer lifespan, and gross margin. The simplest calculation is: Average Order Value x Purchase Frequency x Customer Lifespan. More sophisticated models incorporate churn rate, discount rate (for subscription businesses), retention curves, and segment-specific behavior. LTV is a critical business metric because it directly informs maximum Customer Acquisition Cost (CAC). The rule of thumb is that LTV should be at least 3x CAC for a healthy business. LTV below CAC means you lose money on every customer. Unusually high LTV-to-CAC ratios may indicate you are underinvesting in growth.
§ 2 How LTV is calculated
The basic LTV formula: LTV = Average Order Value x Average Purchase Frequency x Average Customer Lifespan (in years). For subscription businesses: LTV = Average Monthly Recurring Revenue per Customer x Gross Margin / Monthly Churn Rate. More sophisticated models use cohort analysis: track groups of customers acquired in the same period and measure their cumulative revenue over time. The cohort approach handles seasonal variations and changing customer behavior better than simple averages. GA4 offers predictive metrics including predicted LTV (purchase revenue in the next 28 days) and churn probability, accessible in the predictive analytics explorations.
§ 3 LTV-to-CAC ratio
LTV-to-CAC (Customer Acquisition Cost) ratio is the benchmark for customer acquisition efficiency. A ratio of 3:1 means you earn three dollars for every dollar spent acquiring the customer. Investors and executives typically look for: 1:1 (minimum viability, break-even), 3:1 (healthy business), 5:1+ (highly efficient, potentially underinvesting in growth). Below 3:1 suggests you either need to increase customer value (upsells, retention improvements, price increases) or reduce acquisition costs. Above 5:1 may mean you are not spending enough on growth.
§ 4 LTV in GA4
GA4 provides predictive metrics for LTV estimation. The predicted revenue metric estimates revenue a user will generate in the next 28 days. The purchase probability score (7-day) predicts the likelihood of a user purchasing in the next 7 days. These predictions are available in explorations and can be used to build audiences for targeted campaigns (target high-LTV users with retention offers, target low-LTV users with upsells). For accurate LTV modeling, export GA4 data to BigQuery and build custom LTV models using SQL or a dedicated analytics platform.
§ 5 Note
§ 6 In code
// Basic LTV calculation (Python-style pseudocode)
// Average Order Value = Total Revenue / Total Orders = $50
// Purchase Frequency = Total Orders / Unique Customers = 4 per year
// Customer Lifespan = Average years a customer stays active = 3 years
// LTV = AoV x Frequency x Lifespan
// LTV = $50 x 4 x 3 = $600
// With gross margin (more accurate):
// LTV = AoV x Frequency x Lifespan x Gross Margin
// LTV = $50 x 4 x 3 x 0.40 (40% margin) = $240
// For subscription:
// Monthly Churn = 5%
// MRR per Customer = $50
// Gross Margin = 80%
// LTV = $50 x 0.80 / 0.05 = $800§ 7 Common questions
- Q. How is LTV different from revenue?
- A. Revenue is what a customer has paid you to date. LTV is an estimate of what they will pay you in the future. Revenue is backward-looking; LTV is forward-looking. Revenue can be precisely measured; LTV is a prediction with inherent uncertainty.
- Q. Can GA4 calculate LTV for me?
- A. GA4 provides predictive metrics (predicted revenue in 28 days, purchase probability) that feed into LTV analysis, but it does not produce a full customer lifetime value calculation out of the box. You need BigQuery or a dedicated analytics platform for robust LTV modeling.
- Q. What is a good LTV-to-CAC ratio?
- A. 3:1 is the standard benchmark for a healthy business. Below 1:1 means you lose money per customer. Above 5:1 suggests you could profitably increase acquisition spend.
- LTV is the predicted total revenue from a customer over their entire relationship with your business
- Basic formula: Average Order Value x Frequency x Customer Lifespan (x Gross Margin)
- LTV-to-CAC ratio of 3:1+ is the standard for healthy customer economics
- Calculate LTV by segment (acquisition channel, product line, customer type), not as a single average
- GA4 provides predictive signals; use BigQuery for full LTV modeling
We build LTV models that actually drive decisions: segmenting by acquisition channel, connecting GA4 data to your CRM, and setting up automated LTV reporting. Get in touch to understand what your customers are really worth.
Get in touchLifetime Value (LTV or CLV) is the predicted total revenue a business will earn from a single customer over the entire duration of their relationship. It is a forward-looking metric used to determine how much to spend on acquiring customers and which customer segments are most valuable.
Category: Analytics (also: Marketing, Business)
Author: Atomic Glue Analytics Team
## Definition
Lifetime Value (LTV), also called Customer Lifetime Value (CLV or CLTV), is a prediction of the net profit attributed to the entire future relationship with a customer. It estimates the total revenue a business can reasonably expect from a single customer account over the full duration of their engagement. LTV is calculated using historical data: average purchase value, purchase frequency rate, average customer lifespan, and gross margin. The simplest calculation is: Average Order Value x Purchase Frequency x Customer Lifespan. More sophisticated models incorporate churn rate, discount rate (for subscription businesses), retention curves, and segment-specific behavior. LTV is a critical business metric because it directly informs maximum Customer Acquisition Cost (CAC). The rule of thumb is that LTV should be at least 3x CAC for a healthy business. LTV below CAC means you lose money on every customer. Unusually high LTV-to-CAC ratios may indicate you are underinvesting in growth.
## How LTV is calculated
The basic LTV formula: LTV = Average Order Value x Average Purchase Frequency x Average Customer Lifespan (in years). For subscription businesses: LTV = Average Monthly Recurring Revenue per Customer x Gross Margin / Monthly Churn Rate. More sophisticated models use cohort analysis: track groups of customers acquired in the same period and measure their cumulative revenue over time. The cohort approach handles seasonal variations and changing customer behavior better than simple averages. GA4 offers predictive metrics including predicted LTV (purchase revenue in the next 28 days) and churn probability, accessible in the predictive analytics explorations.
## LTV-to-CAC ratio
LTV-to-CAC (Customer Acquisition Cost) ratio is the benchmark for customer acquisition efficiency. A ratio of 3:1 means you earn three dollars for every dollar spent acquiring the customer. Investors and executives typically look for: 1:1 (minimum viability, break-even), 3:1 (healthy business), 5:1+ (highly efficient, potentially underinvesting in growth). Below 3:1 suggests you either need to increase customer value (upsells, retention improvements, price increases) or reduce acquisition costs. Above 5:1 may mean you are not spending enough on growth.
## LTV in GA4
GA4 provides predictive metrics for LTV estimation. The predicted revenue metric estimates revenue a user will generate in the next 28 days. The purchase probability score (7-day) predicts the likelihood of a user purchasing in the next 7 days. These predictions are available in explorations and can be used to build audiences for targeted campaigns (target high-LTV users with retention offers, target low-LTV users with upsells). For accurate LTV modeling, export GA4 data to BigQuery and build custom LTV models using SQL or a dedicated analytics platform.
## Note
Misconception: LTV is a historical metric (total revenue a customer has already generated). It is predictive: an estimate of future value. Historical revenue is easy to calculate but tells you what already happened. LTV tells you what a customer is worth going forward, which is what matters for acquisition decisions. Another misconception: LTV is the same for all customers. It varies dramatically by acquisition channel (organic customers often have higher LTV than paid), product line, and customer segment. Calculate LTV by segment, not as a company-wide average.
## In code
// Basic LTV calculation (Python-style pseudocode) // Average Order Value = Total Revenue / Total Orders = $50 // Purchase Frequency = Total Orders / Unique Customers = 4 per year // Customer Lifespan = Average years a customer stays active = 3 years // LTV = AoV x Frequency x Lifespan // LTV = $50 x 4 x 3 = $600 // With gross margin (more accurate): // LTV = AoV x Frequency x Lifespan x Gross Margin // LTV = $50 x 4 x 3 x 0.40 (40% margin) = $240 // For subscription: // Monthly Churn = 5% // MRR per Customer = $50 // Gross Margin = 80% // LTV = $50 x 0.80 / 0.05 = $800
## Common questions
Q: How is LTV different from revenue?
A: Revenue is what a customer has paid you to date. LTV is an estimate of what they will pay you in the future. Revenue is backward-looking; LTV is forward-looking. Revenue can be precisely measured; LTV is a prediction with inherent uncertainty.
Q: Can GA4 calculate LTV for me?
A: GA4 provides predictive metrics (predicted revenue in 28 days, purchase probability) that feed into LTV analysis, but it does not produce a full customer lifetime value calculation out of the box. You need BigQuery or a dedicated analytics platform for robust LTV modeling.
Q: What is a good LTV-to-CAC ratio?
A: 3:1 is the standard benchmark for a healthy business. Below 1:1 means you lose money per customer. Above 5:1 suggests you could profitably increase acquisition spend.
## Key takeaways
- LTV is the predicted total revenue from a customer over their entire relationship with your business
- Basic formula: Average Order Value x Frequency x Customer Lifespan (x Gross Margin)
- LTV-to-CAC ratio of 3:1+ is the standard for healthy customer economics
- Calculate LTV by segment (acquisition channel, product line, customer type), not as a single average
- GA4 provides predictive signals; use BigQuery for full LTV modeling
## Related entries
- [CAC (Customer Acquisition Cost)](atomicglue.co/glossary/cac-customer-acquisition-cost)
- [ROAS](atomicglue.co/glossary/roas)
- [KPI](atomicglue.co/glossary/kpi)
- [Google Analytics 4 (GA4)](atomicglue.co/glossary/google-analytics-4-ga4)
Last updated July 2026. Permalink: atomicglue.co/glossary/ltv-lifetime-value