How to Calculate Pro Rata Allotment of Shares

Pro Rata Share Allotment Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 20px; background-color: #f4f7f6; } .container { max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } h1 { text-align: center; color: #2c3e50; margin-bottom: 30px; } h2 { color: #34495e; border-bottom: 2px solid #ecf0f1; padding-bottom: 10px; margin-top: 40px; } .calculator-box { background-color: #f8f9fa; padding: 25px; border-radius: 8px; border: 1px solid #e9ecef; margin-bottom: 40px; } .input-group { margin-bottom: 20px; } label { display: block; font-weight: 600; margin-bottom: 8px; color: #555; } input[type="number"] { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; box-sizing: border-box; } button { display: block; width: 100%; padding: 14px; background-color: #3498db; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #2980b9; } #result-area { margin-top: 25px; padding: 20px; background-color: #e8f6f3; border: 1px solid #d4efdf; border-radius: 4px; display: none; } .result-row { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.05); } .result-row:last-child { border-bottom: none; margin-bottom: 0; } .result-label { font-weight: 600; color: #555; } .result-value { font-weight: 700; color: #2c3e50; } .highlight { color: #27ae60; font-size: 1.2em; } .warning { color: #c0392b; text-align: center; margin-top: 10px; font-weight: bold; display: none; } .article-content p { margin-bottom: 15px; text-align: justify; } .formula-box { background: #eee; padding: 15px; border-left: 5px solid #3498db; font-family: monospace; margin: 20px 0; }

Pro Rata Share Allotment Calculator

Subscription Status:
Oversubscription Ratio:
Allotment Probability:
Shares Allotted to You:
Unallotted Shares (Refunded):
function calculateAllotment() { var totalIssued = parseFloat(document.getElementById('totalIssuedShares').value); var totalSubscribed = parseFloat(document.getElementById('totalSubscribedShares').value); var myBid = parseFloat(document.getElementById('individualBid').value); var errorDiv = document.getElementById('errorMsg'); var resultDiv = document.getElementById('result-area'); // Reset display errorDiv.style.display = 'none'; resultDiv.style.display = 'none'; errorDiv.innerHTML = ""; // Validation if (isNaN(totalIssued) || isNaN(totalSubscribed) || isNaN(myBid)) { errorDiv.innerHTML = "Please enter valid numbers in all fields."; errorDiv.style.display = 'block'; return; } if (totalIssued <= 0 || totalSubscribed <= 0 || myBid <= 0) { errorDiv.innerHTML = "Values must be greater than zero."; errorDiv.style.display = 'block'; return; } // Calculation Logic var allottedShares = 0; var ratioText = ""; var statusText = ""; var probability = ""; // Scenario 1: Undersubscription or Full Subscription (Everyone gets what they asked for) if (totalSubscribed myBid) { allottedShares = myBid; } var unallotted = myBid – allottedShares; // Update UI document.getElementById('subStatus').innerHTML = statusText; document.getElementById('subRatio').innerHTML = ratioText; document.getElementById('allotProb').innerHTML = probability; document.getElementById('sharesAllotted').innerHTML = allottedShares + " Shares"; document.getElementById('sharesRefunded').innerHTML = unallotted + " Shares"; resultDiv.style.display = 'block'; }

How to Calculate Pro Rata Allotment of Shares

Pro rata allotment creates a confusing scenario for many investors participating in Initial Public Offerings (IPOs) or Rights Issues. When a share offering is oversubscribed—meaning the demand from investors exceeds the actual number of shares available—companies often utilize a "pro rata" mechanism to distribute the shares fairly among applicants.

Instead of a lottery system where some get everything and others get nothing, pro rata allotment ensures that applicants receive a portion of the shares they applied for, proportional to the total demand.

The Pro Rata Formula

The calculation is based on the ratio of total shares available to the total shares applied for. The basic formula used in the calculator above is:

Allotted Shares = (Total Shares Offered ÷ Total Shares Subscribed) × Your Applied Quantity

Note on Rounding: Since fractional shares typically cannot be issued in standard equity markets, the resulting figure is usually rounded down to the nearest integer. The remaining fraction is disregarded, and the money for those unallotted shares is refunded.

Example Calculation

Imagine a company, TechCorp, issues an IPO:

  • Total Shares Offered: 1,000,000 shares
  • Total Bids Received: 5,000,000 shares

This issue is oversubscribed by 5 times. The allocation ratio is 1:5 (or 20%).

If you applied for 500 shares, the calculation would be:

(1,000,000 ÷ 5,000,000) × 500 = 0.2 × 500 = 100 Shares.

You would receive 100 shares, and the application money for the remaining 400 shares would be refunded to your bank account.

Why Pro Rata Matters for Investors

Understanding this calculation helps investors manage their capital more efficiently. In a heavily oversubscribed IPO, locking up a large amount of capital might yield a very small allotment. By calculating the expected pro rata ratio based on current subscription data (often available on stock exchange websites), investors can gauge whether the potential allotment justifies the capital blocked during the application period.

Key Terms

  • Oversubscription: When total bids exceed the issue size.
  • Basis of Allotment: The official document released by the registrar detailing how shares are divided among different categories of investors.
  • Lot Size: The minimum number of shares you can apply for.

Leave a Comment