# Modeling client lifetime valuelifetime valueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → on AUM economics
A client who moves $2 million to an advisor and stays 12 years is worth roughly 20 times a self-directed investor who churns after 14 months. Same headline dollar amount at acquisition. Wildly different lifetime valuelifetime valueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition →. In asset management, the marketing math that separates these two clients is not complicated, but most firms get it wrong because they anchor on the initial deposit instead of the recurring fee stream.
This lesson shows you how to model client () using the three levers that actually drive it: fee rate, sticky assets under management (AUM), and holding period.
Lifetime valueLifetime valueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → is the total gross profit a client generates over their entire relationship, discounted to today.
In most industries LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → runs on price times purchase frequency. In asset management the "price" is a basis-point fee (a basis point, or bp, is one hundredth of one percent, so 100 bps equals 1%) charged on the AUM the client holds with you. Revenue is recurring by default, which is why sticky AUM is the whole game.
The simplified marketing LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → formula:
LTV = Average AUM x Annual fee rate x Average holding period x Gross margin
Let us define each input:
Let us model the two clients from the hook. These are illustrative inputs to show mechanics, not market quotes.
Annual gross revenue = $2,400,000 x 1.0% = $24,000
Gross profit per year = $24,000 x 70% = $16,800
Undiscounted LTV = $16,800 x 12 = $201,600
Advised money is sticky. Industry retention studies consistently show advised clients churn far less than self-directed ones, because switching means moving custodians, re-papering accounts, and often triggering a tax event.
Annual gross revenue = $60,000 x 0.15% = $90
Gross profit per year = $90 x 60% = $54
Undiscounted LTV = $54 x 1.2 = $65
Client A is worth about 3,100 times Client B in this stylized model. Even if the direct investor held ten times more money, the fee-rate and holding-period gaps still dominate.
The lesson for marketers: the deposit at acquisition tells you almost nothing. Fee rate and holding period tell you everything.
Because fee revenue arrives over many years, a rigorous LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → discounts future cash flows. A simple approach applies a discount rate to each year's gross profit.
# Simple discounted LTV for an advised relationship
avg_aum = 2_400_000
fee_rate = 0.010 # 100 bps
gross_margin = 0.70
years = 12
discount_rate = 0.08 # marketing planning rate, illustrative
annual_gp = avg_aum * fee_rate * gross_margin # 16,800
ltv = sum(annual_gp / (1 + discount_rate) ** t for t in range(1, years + 1))
print(round(ltv)) # ~126,663Discounting the advised client at 8% cuts LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → from about $201,600 to roughly $127,000. Still enormous next to the direct investor. Use a discount rate your finance team agrees on; the point for marketing is consistency across segmentssegmentsDividing a market into distinct groups of customers who share similar needs, characteristics or behaviours, so each group can be served with a tailored approach.View full definition →.
Notice which lever moves LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → most. Doubling AUM doubles LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → linearly. Doubling the fee rate is usually impossible (fees are compressing, not rising). But extending holding period compounds, because every extra year of a sticky relationship layers on full gross profit at near-zero incremental acquisition costacquisition costCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →.
Fee compression is real and structural. Passive products and fee transparency rules have pushed advisory and fund fees down for over a decade. Vanguard, BlackRock (through iShares), and Fidelity have driven index expense ratios toward single-digit basis points. Because you cannot count on raising fees, retention and net AUM growth are the marketing metrics that protect LTV.
Track these retention-linked metrics:
The CFA Institute publishes accessible primers on fee structures and their long-term drag; see the CFA Institute's investor resources for background on how fees compound against returns over time.
LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → only means something next to customer acquisition costcustomer acquisition costCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → (CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →): the fully loaded marketing and sales spend to win one client, including advisor recruiting, referral incentives, paid mediapaid mediaVisitors arriving via paid ads or sponsored placements, where you pay a platform to display your message rather than earning visits organically.View full definition →, and onboarding.
The ratio marketers watch is LTV:CAC. A widely cited healthy benchmark across subscription and recurring-revenue businesses is roughly 3:1 or better (an estimate, not sector-specific), with payback under 12 to 24 months.
Apply it to Client A. If discounted LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → is about $127,000 and you spent $20,000 to acquire that relationship (advisor comp, referral fee, marketing allocation), your LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition →:CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → is roughly 6:1. That justifies spending more to win similar high-AUM, high-tenure clients.
Apply it to Client B. If discounted LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → is $65 and blended digital CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → on a direct platform is, say, $150, you are losing money on every acquisition unless those clients later consolidate more assets or convert to advice. This is exactly why direct platforms invest so heavily in cross-sell and "held-away asset" capture.
Knowledge check
1. Why does the lesson argue that anchoring on a client's initial deposit leads firms to misjudge lifetime value in asset management?
2. Two clients bring the same headline dollar amount at acquisition but have very different lifetime values. What best explains this difference according to the LTV model?
3. In the LTV formula, why is 'Average AUM' used rather than the day-one balance?
4. Select ALL correct answers about the three levers that drive client lifetime value in this AUM model.
Select all the correct answers.
5. Select ALL correct answers about how the asset management LTV model differs from a typical retail 'price times purchase frequency' model.
Select all the correct answers.
A single blended LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → hides everything that matters. Build LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → by cohort, because inputs vary sharply across segmentssegmentsDividing a market into distinct groups of customers who share similar needs, characteristics or behaviours, so each group can be served with a tailored approach.View full definition →.
By channel: advised relationships carry higher fee rates and longer holding periods than direct. Model them separately or you will over-invest in cheap-to-acquire, low-LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → direct accounts.
By wealth band: a $250k mass-affluent client and a $10M high-net-worth (HNW) client sit on different fee schedules. Fees usually tier down as AUM rises (breakpoints), so a $10M client may pay a blended 65 bps rather than 100 bps. Model the blended rate, not the top-tier rate.
By product mix: a client 80% in low-fee index funds generates less fee revenue per dollar than one in advisory or alternatives. Product mix silently reshapes the fee-rate input.
Fee levels differ across regions, partly due to regulation. In Europe, MiFID II (the Markets in Financial Instruments Directive II, the EU rulebook governing investment services) forced unbundling and cost disclosure, which has kept downward pressure on advisory and fund fees. In the US, the Department of Labor and SEC disclosure regimes and the rise of registered investment advisers (RIAs) charging around 100 bps have shaped a similar compression trend. Precise average fee figures vary by source and year, so treat any single number as an estimate and confirm against a current provider such as Morningstar's annual fee studies before using it in a live model.
The structural takeaway holds in both regions: fees fall over time, so LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → defense runs through holding period and net flows.
A usable marketing LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → view tracks, per cohort:
1. Average AUM and its trend (are balances growing?)
2. Blended fee rate in bps (is compression eroding it?)
3. Holding period or annual churn ratechurn rateChurn rate is the percentage of customers or revenue lost over a period. It measures how fast a business loses its existing customer base.View full definition →
4. Discounted LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition →
5. CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → and LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition →:CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → ratio
6. Net revenue retentionNet revenue retentionNet Revenue Retention measures the percentage of recurring revenue retained and grown from existing customers over a period, including upsell and expansion, net of downgrades and churn.View full definition →
When you see LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition →:CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → slipping, the diagnosis is almost always one of two things: acquisition got more expensive, or retention (holding period) shortened. Both are marketing-owned levers.