How is Sell Through Rate Calculated

Sell-Through Rate Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; background-color: #f9f9f9; } .calculator-container { background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-bottom: 40px; border: 1px solid #e1e1e1; } .calculator-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 700; } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; } .input-group input { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; transition: border-color 0.3s; box-sizing: border-box; } .input-group input:focus { border-color: #3498db; outline: none; } .calc-btn { width: 100%; background-color: #3498db; color: white; border: none; padding: 14px; font-size: 18px; font-weight: 600; border-radius: 6px; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #2980b9; } .result-box { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid #3498db; display: none; } .result-value { font-size: 32px; font-weight: 700; color: #2c3e50; margin-bottom: 5px; } .result-label { font-size: 14px; color: #7f8c8d; text-transform: uppercase; letter-spacing: 1px; } .result-details { margin-top: 15px; padding-top: 15px; border-top: 1px solid #e1e1e1; font-size: 15px; } .article-content { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .article-content h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .article-content ul { padding-left: 20px; } .article-content li { margin-bottom: 10px; } .formula-box { background-color: #edf7ff; padding: 15px; border-radius: 6px; font-family: monospace; font-size: 18px; text-align: center; margin: 20px 0; border: 1px solid #bce0fd; } @media (max-width: 600px) { .calculator-container { padding: 20px; } }
Retail Sell-Through Rate Calculator
Sell-Through Rate
0%
function calculateSellThroughRate() { var soldInput = document.getElementById('unitsSold'); var inventoryInput = document.getElementById('startingInventory'); var resultBox = document.getElementById('resultDisplay'); var percentDisplay = document.getElementById('strPercentage'); var detailsDisplay = document.getElementById('inventoryDetails'); var sold = parseFloat(soldInput.value); var total = parseFloat(inventoryInput.value); // Validation if (isNaN(sold) || isNaN(total)) { alert("Please enter valid numbers for both fields."); return; } if (total <= 0) { alert("Beginning Inventory must be greater than zero."); return; } if (sold total) { alert("Units sold cannot exceed total inventory."); return; } // Calculation var rate = (sold / total) * 100; var remaining = total – sold; var formattedRate = rate.toFixed(2); // Interpretation var analysis = ""; if (rate < 40) { analysis = "Slow Mover: Consider markdowns or promotions to clear stock."; } else if (rate >= 40 && rate <= 80) { analysis = "Healthy: Sales velocity is optimal."; } else { analysis = "High Demand: Risk of stockout. Consider restocking immediately."; } // Update DOM resultBox.style.display = "block"; percentDisplay.innerHTML = formattedRate + "%"; detailsDisplay.innerHTML = "Analysis: " + analysis + "" + "Units Sold: " + sold + "" + "Remaining Stock: " + remaining + "" + "Total Beginning Stock: " + total; }

How is Sell-Through Rate Calculated?

Sell-Through Rate (STR) is a fundamental retail metric that compares the amount of inventory a retailer receives against what is actually sold within a specific period. It is a key indicator of supply chain efficiency, product popularity, and inventory management performance.

Unlike inventory turnover, which looks at how many times you replace stock over a year, sell-through rate is often used for shorter periods (usually monthly) to track the velocity of specific items or categories.

The Formula

The calculation for sell-through rate is straightforward. It is the percentage of your non-sold inventory that converted into sales.

(Units Sold / Units Received) × 100 = Sell-Through Rate %

Where:

  • Units Sold: The number of items sold during the specific time period.
  • Units Received (or Beginning Inventory): The total stock available for sale at the start of that period.

Detailed Calculation Example

Let's calculate the sell-through rate for a boutique clothing store launching a new summer line.

  • Scenario: The store buys 500 units of a specific summer dress at the beginning of June.
  • Action: By the end of June, the Point of Sale (POS) system shows that 320 of those dresses were sold.

Using the formula:

(320 / 500) × 100 = 64%

The sell-through rate for June is 64%. This means the store sold nearly two-thirds of its inventory in the first month.

What is a "Good" Sell-Through Rate?

Sell-through rates vary significantly by industry and product type, but general benchmarks in retail suggest:

  • Under 40%: This is often considered low. It indicates that you have overstocked, priced the item too high, or there is low market demand. You are paying carrying costs for inventory that isn't moving.
  • 40% to 80%: This is the "sweet spot" for most retailers. It suggests a healthy balance where inventory is moving fast enough to generate profit but not so fast that you lose sales due to stockouts.
  • Over 80%: While high sales are good, a rate this high might indicate you understocked. If you sell out too quickly, you miss potential sales from customers who arrive after the shelves are empty.

Why This Metric Matters

Calculating sell-through rate regularly allows retailers to:

  1. Optimize Markdowns: Identify slow-moving items (low STR) early and discount them to free up cash and shelf space.
  2. Improve Buying Decisions: If a specific brand or category consistently has a high STR, buyers know to increase order quantities for the next season.
  3. Reduce Storage Costs: Inventory that sits in a warehouse costs money. Increasing STR lowers holding costs.

Leave a Comment