# Basket math: transaction value, units per transaction and conversion rateconversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.View full definition →
A regional apparel chain reports comparable sales ("comps," meaning sales growth at stores open more than a year) down 4% for the quarter. Foot traffic is flat. Something inside the store is broken, and the CFO wants to know exactly what before the board call. This is what basket math is for: it decomposes one messy headline number into three levers you can actually manage.
Retail sales performance breaks into a simple chain:
Sales = Traffic x Conversion Rate x Units Per Transaction (UPT) x Average Unit Retail (AUR)
Or, more commonly compressed:
Sales = Traffic x Conversion Rate x Average Transaction Value (ATV)
Where ATV = UPT x AUR (average price per unit sold).
Each term is a distinct diagnostic:
Back to the apparel chain. Here's last quarter versus this quarter:
| Metric | Last year | This year | Change |
|---|---|---|---|
| Traffic | 100,000 | 100,000 | 0% |
| Conversion rateConversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.View full definition → | 22% | 19% | -3 pts |
| Transactions | 22,000 | 19,000 | -13.6% |
| UPT | 2.5 | 2.6 | +4% |
| AUR | $36 | $35 | -2.8% |
| ATV | $90 | $91 | +1.1% |
| Total sales | $1,980,000 | $1,729,000 | -12.7% |
Comps are down roughly 12.7% here (in the earlier scene, imagine a milder version producing the 4% headline). Traffic is flat, so footfall isn't the story. ATV actually rose slightly, so shoppers who buy are spending a bit more per visit (marginally more items, marginally lower price, netting positive). The entire decline traces to conversion rateconversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.View full definition →: fewer visitors are converting into buyers.
That's a precise, actionable finding. It points operations toward store staffing, checkout friction, stockouts on entry tables, or a merchandising problem, not toward a marketing/traffic problem. Contrast: if UPT had collapsed while conversion held, you'd suspect a cross-sell or bundling failure, not a store-experience one.
Conversion rateConversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.View full definition → = Transactions ÷ Traffic
19,000 ÷ 100,000 = 19%
ATV = Sales ÷ Transactions
$1,729,000 ÷ 19,000 = $91
UPT = Units sold ÷ Transactions (if you had 49,400 units sold this year: 49,400 ÷ 19,000 = 2.6)
These three formulas are the entire toolkit. Everything else in this lesson is benchmarking and interpretation.
Numbers vary hugely by category, so treat these as broad, order-of-magnitude estimates for 2025 to 2026, not precise targets.
Always check whether a reported figure is tax-inclusive (standard in Europe) or tax-exclusive (standard in US receipts), since that alone can shift AUR and ATV comparisons by the local VAT rate (often 15 to 25% across EU states, per European Commission VAT rates data).
"Comp sales" or "same-store sales" is the headline investors watch, but it's an output, not a diagnosis. A retailer can hit flat comps two different ways:
1. Traffic down 5%, conversion up enough to offset it (efficiency story, often margin-friendly).
2. Traffic flat, ATV down (discounting story, often margin-negative).
These look identical on the income statement's top line but imply opposite strategic responses. That's why earnings calls from companies like Target, Home Depot, or Zara's parent Inditex often explicitly break out traffic, conversion, and ticket trends, sometimes in investor presentations even when not in the press release itself.
E-commerce lets you decompose conversion further into a funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition →: site visits → product views → add-to-cart → checkout starts → completed orders. Cart abandonment rate (shoppers who add to cart but don't buy) is a standard diagnostic, often estimated around 60 to 70% across e-commerce broadly (Baymard Institute research is a commonly cited source: baymard.com/lists/cart-abandonment-rate). A rising abandonment rate points to friction in shipping cost disclosure, payment options, or site speed, not to a traffic or merchandising problem.
# Simple basket math check in a spreadsheet or script
traffic = 100000
transactions = 19000
units_sold = 49400
total_sales = 1729000
conversion_rate = transactions / traffic
upt = units_sold / transactions
atv = total_sales / transactions
aur = total_sales / units_sold
print(f"Conversion: {conversion_rate:.1%}, UPT: {upt:.2f}, ATV: ${atv:.2f}, AUR: ${aur:.2f}")This kind of two-line check is exactly what a merchandising analyst runs weekly against a POS (point of sale) export.
Knowledge check
1. In the apparel chain example, traffic was flat but conversion rate dropped sharply while ATV rose slightly. What does this pattern most likely indicate?
2. Why is it useful to decompose total sales into traffic, conversion rate, UPT, and AUR rather than just looking at the total sales change?
3. A store manager wants to increase Average Transaction Value (ATV) without changing prices. Which lever should they focus on?
4. Select ALL correct answers about conversion rate in retail basket math.
Select all the correct answers.
5. Select ALL correct answers about how AUR (average unit retail) and UPT (units per transaction) combine to form ATV.
Select all the correct answers.
A useful habit: always look at conversion, UPT, and AUR as a set, never in isolation, because retailers can trade one off against another deliberately.
🎬 [VIDEO: "Retail KPIs Explained: Conversion RateConversion RateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.View full definition →, Basket Size and More" - youtube.com/results?search_query=retail+kpikpiKey Performance Indicator, a measurable value that shows how effectively you're achieving a specific objective, tracked over time against a target.View full definition →+conversion+rate+basket+size - search for current explainer videos covering conversion rateconversion rateThe percentage of visitors or prospects who complete a desired action (purchase, sign-up, contact form), calculated as conversions divided by total opportunities.View full definition →, UPT, and ATV with real POS dashboard walkthroughs, useful for seeing these metrics inside an actual reporting tool]