# LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → in apparel: from first order to wardrobe lifetime
Two shoppers walk into your online store on the same Tuesday. Both buy a $120 order: a pair of jeans and a tee. Two years later, one has spent $180 total. The other has spent $640. Same first order, same acquisition channel, wildly different value.
If you only measured the first purchase, these two look identical. They are not. Understanding why is the whole point of 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 → (LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →), and in apparel the drivers are specific: how often people rebuy, whether they cross into new categories, and how many returns eat your margin.
Lifetime value (LTV) is the total profit a customer generates across their entire relationship with your brand, not just their first order. Some teams call it CLVCLVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → (customer lifetime valuecustomer lifetime valueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →). Same thing.
In fashion, LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → behaves differently than in, say, software. There is no subscription. People buy in bursts tied to seasons, life events, and mood. A customer can go quiet for eight months, then drop $300 on a new-season drop. That lumpy, seasonal rhythm is the "wardrobe lifetime."
The core formula, simplified:
LTV = Average Order Value (AOV) × Purchase Frequency × Gross Margin × Customer Lifespan
Let us define each term as we build it up.
AOV is total revenue divided by number of orders. If your store did $500,000 across 5,000 orders last quarter, AOV is $100.
Apparel AOV varies hugely by segment. Fast fashion sits low (often $40 to $70). Premium and contemporary brands run higher ($120 to $250+). These are rough industry ranges, not fixed figures, and they shift with promotions.
Repeat rate is the share of customers who buy more than once. Purchase frequency is how many orders the average customer places in a period.
This is where our two shoppers diverge. Shopper A bought once more (a $60 order) and left: two orders total. Shopper B came back four more times, averaging $130 each. Same start, different frequency.
A widely cited apparel benchmark: first-time buyers convert to a second purchase somewhere around 20 to 30 percent within a year, though this varies by brand and price point. Treat it as an estimate to test against your own dataown dataData collected directly from your own customers and prospects through your own channels: your most reliable and privacy-compliant source.Voir la définition complète →, not gospel.
Here is what generalist LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → models miss. Apparel has brutal return rates because fit is uncertain. Online apparel returns commonly run 20 to 40 percent of units, and even higher for certain categories like dresses or footwear (estimates that vary by market and brand, as of 2025 reporting).
A return is not neutral. It costs you: return shipping, restocking labor, and often a markdown on the returned item. You must use return-adjusted margin, not gross margingross marginGross margin is the share of revenue left after subtracting the direct cost of producing goods or services, expressed as a percentage of revenue.Voir la définition complète →, or your LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → is fantasy.
Say a customer places a $200 order at 60 percent gross margingross marginGross margin is the share of revenue left after subtracting the direct cost of producing goods or services, expressed as a percentage of revenue.Voir la définition complète →, so $120 gross profit.
Without adjusting, you would have booked $120 profit. The return quietly cut it in half. Multiply that error across thousands of customers and your LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → model lies to you about who is worth acquiring.
Now back to Shopper B, the $640 customer. What did she actually do? She started in denim, then bought knitwear, then outerwear, then accessories.
Cross-sell means selling into a new category. In apparel it is the single strongest predictor of high LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →. A customer who buys across three or more categories is dramatically stickier than a single-category buyer, because your brand becomes their default wardrobe source, not a one-off.
Practical signal: track category penetration, the number of distinct categories a customer has purchased. Move people from 1 to 2 categories and you usually see a step change in retention. Outerwear and accessories often carry the best margins, so nudging a denim buyer toward a jacket lifts both frequency and margin.
Shopify's guide to customer lifetime value is a solid free primer on the mechanics if you want to reinforce the basics.
A cohort is a group of customers who share a start point, usually the month they first purchased. Cohort analysisCohort analysisCohort analysis groups users by a shared starting trait or time (such as signup month) and tracks their behavior over time to reveal retention and lifecycle patterns.Voir la définition complète → tracks each group's spending over time.
Why cohorts matter in apparel: buying is seasonal and lumpy, so a single blended average hides everything. A customer acquired in November (holiday gifting, discount-driven) often behaves worse over time than one acquired in March (full-price, intent-driven). Blended LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → averages them together and misleads your acquisition spend.
Plot cumulative revenue per customer by months since first order, one line per acquisition cohort.
Here is a minimal way to compute cumulative LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → by cohort from an orders table:
SELECT
DATE_TRUNC('month', first_order_date) AS cohort_month,
DATE_DIFF('month', first_order_date, order_date) AS months_since_first,
SUM(return_adjusted_profit)
/ COUNT(DISTINCT customer_id) AS cumulative_ltv_per_customer
FROM customer_orders
GROUP BY 1, 2
ORDER BY 1, 2;Run it, chart it, and you can immediately see which acquisition months produced durable customers versus one-and-done discount hunters.
🎬 [VIDEO: "Cohort AnalysisCohort AnalysisCohort analysis groups users by a shared starting trait or time (such as signup month) and tracks their behavior over time to reveal retention and lifecycle patterns.Voir la définition complète → Explained" - youtube.com - a clear visual walkthrough of how to read and build cohort retention and revenue curves]
LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → is only useful next to what you paid to get the customer. Customer Acquisition Cost (CAC) is total marketing spend divided by new customers acquired.
The key ratio marketers watch is LTV:CAC. A common rule of thumb is that a healthy ratio is around 3:1 (you earn three times what you spent to acquire). Below 1:1 you lose money on every customer. Above 5:1 you may be under-investing in growth. This is a heuristic, not a law.
The fashion nuance: because LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète → depends so heavily on second purchase and cross-sell, your 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.Voir la définition complète → can look fine on day one and terrible in reality if those customers never come back. Always pair 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.Voir la définition complète → with the return-adjusted, cohort-based , not the first-order revenue.
Vérification des acquis
1. Two customers place identical first orders through the same acquisition channel, yet generate very different total value over two years. What does this scenario most directly illustrate?
2. Why does LTV in apparel behave differently than in software subscription businesses?
3. A store reports a low AOV but wants to understand its LTV picture. Which reasoning best reflects the lesson's framework?
4. Select ALL correct answers about the components of the apparel LTV formula.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about what specifically drives lifetime value in apparel.
Sélectionnez toutes les réponses correctes.
Let us model both with return-adjusted, frequency-aware math over two years.
Shopper A:
Shopper B:
Shopper B is worth roughly four times Shopper A in profit, and the gap is still widening. If your 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.Voir la définition complète → was $40, Shopper A returns about 2:1 (marginal), Shopper B about 8:1 (excellent). Same acquisition channel, same first order. The difference was entirely repeat rate and cross-sell.
The strategic takeaway: your marketing job is not just to acquire. It is to manufacture more Shopper Bs from your existing base through second-order nudges, category expansion, and reducing returns via better fit guidance.