# Calculating lifetime valuelifetime valueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → when the customer doesn't pay you directly
A $35 first-time gift to a food bank looks small. But if that donor keeps giving for six years, refers a friend, and eventually leaves a bequest, their real value to the organization could exceed $2,000. Most nonprofits never calculate this. They treat every gift as a one-off transaction instead of the start of a relationship, and they end up overspending to acquire donors who were never going to stick around, while underinvesting in the ones who would have stayed for a decade.
This lesson adapts Customer Lifetime Value (LTV), the total value a customer generates over their relationship with an organization, for a world where "customers" are donors, volunteers, and beneficiaries who often give time, trust, or data instead of repeat purchases.
In commercial marketing, LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → is typically:
LTV = Average Purchase Value × Purchase Frequency × Customer Lifespan
That formula assumes a clean transaction stream. Public sector and nonprofit relationships rarely work that way:
The fix is not to abandon LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →. It's to swap in the right proxies for "purchase."
For a donor-based organization like a food bank, the adapted formula is:
Donor LTV = Average Annual Gift × Average Retention-Adjusted Lifespan
Where retention-adjusted lifespan is derived from the donor retention rate, the percentage of donors who give again the following year.
The standard shortcut, borrowed from subscription business modeling:
Average Lifespan = 1 / (1 − Retention Rate)
Assume (illustrative figures, not from a specific organization):
Step 1: Average lifespan = 1 / (1 − 0.45) = 1 / 0.55 ≈ 1.8 years
Step 2: LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → = $120 × 1.8 ≈ $218
Compare that to a typical Cost Per Acquisition (CPA), what it costs in marketing and fundraising spend to acquire one new donor. Direct mail and digital acquisition campaigns in the US nonprofit sector often run $25 to $150+ per new donor, depending on channel (estimate; digital acquisition, especially paid social, tends to sit at the higher end, direct mail to existing-lookalike lists at the lower end).
If CPACPACost Per Acquisition: the total cost to generate one customer or conversion, computed by dividing total spend by the number of acquisitions.Voir la définition complète → is $100 and LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → is $218, the organization has room to invest, but not unlimited room. A CPACPACost Per Acquisition: the total cost to generate one customer or conversion, computed by dividing total spend by the number of acquisitions.Voir la définition complète → of $180 against that same LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → would leave almost no margin for program delivery.
Monthly recurring donors behave very differently. Retention among sustained monthly givers is often cited as 80%+ annually (estimate, varies by platform and sector), dramatically higher than one-time donors.
Recalculating with 80% retention:
Average lifespan = 1 / (1 − 0.80) = 5 years
If the average monthly donor gives $15/month ($180/year):
LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → = $180 × 5 = $900
This is why nonprofits increasingly push donors toward monthly giving programs. The retention math alone can quadruple LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → even without increasing gift size.
Convert hours into dollar value using a standard reference rate. Independent Sector, a US nonprofit coalition, publishes an annual estimated dollar value of volunteer time (a commonly cited estimate, check their site for the current year's figure: independentsector.org/value-of-volunteer-time).
Volunteer LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → = Estimated Hourly Value × Average Annual Hours × Average Years of Service
A volunteer contributing 50 hours/year for 4 years, at an illustrative $33/hour reference rate, generates roughly $6,600 in equivalent value, even if they never donate a dollar. This matters when deciding how much to spend recruiting and retaining volunteers versus donors.
For public agencies and program beneficiaries, "LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →" shifts from revenue to retained trust and engagement, which correlates with program effectiveness and future funding cases. Proxies include:
These aren't dollar figures, but they function the same way LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → does commercially: they tell you where continued investment pays off.
Vérification des acquis
1. Why does the standard commercial LTV formula (Average Purchase Value × Purchase Frequency × Customer Lifespan) typically break down for nonprofits and public agencies?
2. What is the core fix the lesson proposes for adapting LTV to nonprofit and public sector contexts?
3. A food bank spends heavily to acquire many first-time $35 donors but does little to encourage repeat giving. Based on the lesson's argument, what is the most likely consequence?
4. Select ALL correct answers about how 'value' should be understood differently across donor, volunteer, and beneficiary relationships in this framework.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about the concept of 'donor retention rate' and its role in adapted LTV calculations.
Sélectionnez toutes les réponses correctes.
LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → only matters if it's compared against acquisition cost by channel. Build a simple table:
| Channel | CPACPACost Per Acquisition: the total cost to generate one customer or conversion, computed by dividing total spend by the number of acquisitions.Voir la définition complète → (estimate) | LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → | LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →: Ratio |
|---|---|---|---|
| Direct mail (cold list) | $120 | $218 | 1.8:1 |
| Monthly giving (digital) | $90 | $900 | 10:1 |
| Peer-to-peer referral | $35 | $260 | 7.4:1 |
A commonly used commercial marketing benchmark is a target LTV:CAC ratio of roughly 3:1. Nonprofits should treat this as directional, not gospel, since mission delivery, not profit margin, is the real objective. But a channel consistently below 1:1 is not sustainable even for a mission-driven organization: it's actively draining resources that could go to programs.
In Europe, comparable retention benchmarking exists through bodies like the UK's Fundraising Regulator and sector reports from the Chartered Institute of Fundraising, though exact retention percentages vary by country and should be checked against current sector reports rather than assumed to match US figures.
For teams with basic spreadsheet or Python access, tracking retention cohorts is straightforward:
# Simple year-over-year donor retention calculation
donors_year1 = 1000
donors_returned_year2 = 450
retention_rate = donors_returned_year2 / donors_year1
avg_lifespan = 1 / (1 - retention_rate)
print(f"Retention rate: {retention_rate:.0%}")
print(f"Estimated avg donor lifespan: {avg_lifespan:.1f} years")Running this quarterly by acquisition channel (direct mail cohort vs. digital cohort vs. event cohort) reveals which channels produce durable donors versus one-time responders, well before you have years of data to observe actual churn.
🎬 [VIDEO: "Donor Retention: Why It Matters More Than Acquisition" - youtube.com/results?search_query=donor+retention+nonprofit+fundraising - search this term for current, sector-specific breakdowns of retention economics from fundraising conferences and nonprofit consultancies]