📐 Math

Victoria Secret Bra Size Calculator

Solve Victoria Secret Bra Size Calculator problems with step-by-step solutions

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Victoria Secret Bra Size Calculator
let currentUnit = 'inches'; function setUnit(unit) { currentUnit = unit; document.querySelectorAll('.unit-btn').forEach(btn => btn.classList.remove('active')); document.querySelector(`.unit-btn[onclick="setUnit('${unit}')"]`).classList.add('active'); const uInput = document.getElementById('i1'); const bInput = document.getElementById('i2'); if (unit === 'inches') { uInput.placeholder = 'e.g., 31 inches'; bInput.placeholder = 'e.g., 37 inches'; if (uInput.value) uInput.value = (parseFloat(uInput.value) / 2.54).toFixed(1); if (bInput.value) bInput.value = (parseFloat(bInput.value) / 2.54).toFixed(1); } else { uInput.placeholder = 'e.g., 78.7 cm'; bInput.placeholder = 'e.g., 94 cm'; if (uInput.value) uInput.value = (parseFloat(uInput.value) * 2.54).toFixed(1); if (bInput.value) bInput.value = (parseFloat(bInput.value) * 2.54).toFixed(1); } } function calculate() { const underbust = parseFloat(document.getElementById('i1').value); const bust = parseFloat(document.getElementById('i2').value); const currentBand = parseFloat(document.getElementById('i3').value) || 0; const currentCupNum = parseInt(document.getElementById('i4').value) || 0; if (!underbust || !bust || underbust <= 0 || bust <= 0) { showResult('—', 'Error', [{'label': 'Please enter valid measurements', 'value': 'Both underbust and bust required', 'cls': 'red'}]); return; } if (underbust >= bust) { showResult('—', 'Invalid', [{'label': 'Bust must be larger than underbust', 'value': 'Measure again', 'cls': 'red'}]); return; } // Victoria's Secret sizing formula // Band size: round underbust to nearest even number, then add 4 if underbust < 33, add 5 if 33-37, add 6 if >37 let bandSize; const roundedUnder = Math.round(underbust); if (roundedUnder < 28) bandSize = 28; else if (roundedUnder < 33) bandSize = Math.round((roundedUnder + 4) / 2) * 2; else if (roundedUnder < 38) bandSize = Math.round((roundedUnder + 5) / 2) * 2; else bandSize = Math.round((roundedUnder + 6) / 2) * 2; // Ensure even band if (bandSize % 2 !== 0) bandSize += 1; if (bandSize < 28) bandSize = 28; if (bandSize > 44) bandSize = 44; // Cup size: difference between bust and band const diff = bust - bandSize; // Victoria's Secret cup progression (1 inch per cup) const cupLetters = ['AA', 'A', 'B', 'C', 'D', 'DD', 'DDD', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N']; let cupIndex = Math.round(diff); if (cupIndex < 0) cupIndex = 0; if (cupIndex >= cupLetters.length) cupIndex = cupLetters.length - 1; const cupSize = cupLetters[cupIndex]; const fullSize = `${bandSize}${cupSize}`; // Sister sizes (same cup volume, different band) const sisterSizes = []; const bandOffsets = [-2, 0, 2]; const cupOffsets = [1, 0, -1]; for (let i = 0; i < 3; i++) { const sb = bandSize + bandOffsets[i]; const sc = cupIndex + cupOffsets[i]; if (sb >= 28 && sb <= 44 && sc >= 0 && sc < cupLetters.length) { sisterSizes.push(`${sb}${cupLetters[sc]}`); } } // Fit assessment let fitStatus, fitColor; const idealDiff = cupIndex; if (idealDiff === 0 || idealDiff === 1) { fitStatus = 'Excellent fit — band and cup aligned'; fitColor = 'green'; } else if (idealDiff >= 2 && idealDiff <= 4) { fitStatus = 'Good fit — may need band adjustment'; fitColor = 'green'; } else if (idealDiff >= 5 && idealDiff <= 7) { fitStatus = 'Fair fit — consider sister sizing'; fitColor = 'yellow'; } else { fitStatus = 'Poor fit — professional fitting recommended'; fitColor = 'red'; } // Comparison with current bra let comparisonMsg = ''; let comparisonCls = ''; if (currentBand > 0 && currentCupNum > 0) { const currentCupLetter = cupLetters[currentCupNum - 1] || '?'; const currentSize = `${currentBand}${currentCupLetter}`; if (currentSize === fullSize) { comparisonMsg = 'Your current bra matches perfectly!'; comparisonCls = 'green'; } else { const diffBand = bandSize - currentBand; const diffCup = cupIndex - (currentCupNum - 1); let parts = []; if (diffBand !== 0) parts.push(`band ${diffBand > 0 ? 'larger' : 'smaller'} by ${Math.abs(diffBand)}`); if (diffCup !== 0) parts.push(`cup ${diffCup > 0 ? 'larger' : 'smaller'} by ${Math.abs(diffCup)}`); comparisonMsg = `VS recommends ${fullSize} (${parts.join(', ')}) vs your current ${currentSize}`; comparisonCls = Math.abs(diffBand) + Math.abs(diffCup) > 3 ? 'red' : 'yellow'; } } // Build result const results = [ {'label': 'Recommended Size', 'value': fullSize, 'cls': 'green'}, {'label': 'Underbust', 'value': `${underbust.toFixed(1)} ${currentUnit === 'inches' ? 'in' : 'cm'}`, 'cls': ''}, {'label': 'Bust', 'value': `${bust.toFixed(1)} ${currentUnit === 'inches' ? 'in' : 'cm'}`, 'cls': ''}, {'label': 'Band Size', 'value': bandSize.toString(), 'cls': ''}, {'label': 'Cup Size', 'value': cupSize, 'cls': diff >= 0 && diff <= 5 ? 'green' : 'yellow'}, {'label': 'Cup Difference', 'value': `${diff.toFixed(1)} ${currentUnit === 'inches' ? 'in' : 'cm'}`, 'cls': diff >= 0 && diff <= 4 ? 'green' : diff <= 7 ? 'yellow' : 'red'}, {'label': 'Fit Assessment', 'value': fitStatus, 'cls': fitColor} ]; if (comparisonMsg) { results.push({'label': 'Comparison', 'value': comparisonMsg, 'cls': comparisonCls}); } // Sister sizes breakdown let breakdownHTML = '

Sister Sizes (Same Cup Volume)

'; breakdownHTML += ''; for (let i = 0; i < sisterSizes.length; i++) { const note = i === 1 ? 'Recommended' : 'Alternative'; const cls = i === 1 ? 'green' : 'yellow'; breakdownHTML += ``; } breakdownHTML += '
BandCupSizeNote
${bandSize + bandOffsets[i]}${cupLetters[cupIndex + cupOffsets[i]]}${sisterSizes[i]}${note}
'; // Cup volume explanation breakdownHTML += '

Cup Volume Chart (Victoria\'s Secret)

'; breakdownHTML += ''; const cupData = [ [0, 'AA', 'Very Small'], [1, 'A', 'Small'], [2, 'B', 'Medium Small'], [3, 'C', 'Medium'], [4, 'D', 'Medium Full'], [5, 'DD', 'Full'], [6, 'DDD', 'Very Full'], [7, 'G', 'Large'], [8, 'H', 'Extra Large'], [9, 'I', '2X Large'], [10, 'J', '3X Large'] ]; for (const [diffIn, cup, vol] of cupData) { const isCurrent = cup === cupSize ? 'highlight' : ''; breakdownHTML += ``; } breakdownHTML += '
Difference (in)Cup SizeVolume
${diffIn}${cup}${vol}
'; document.getElementById('breakdown-wrap').innerHTML = breakdownHTML; showResult(fullSize, 'Victoria\'s Secret Bra Size', results); } function showResult(primaryValue, label, results) { document.getElementById('res-value').textContent = primaryValue; document.getElementById('res-label').textContent = label; const subEl = document.getElementById('res-sub'); if (results && results.length > 0) { const firstResult = results[0]; subEl.textContent = firstResult.value || ''; } else { subEl.textContent = ''; } const grid = document.getElementById('result-grid'); grid.innerHTML = ''; if (results) { results.forEach((r, index) => { const item = document.createElement('div'); item.className = 'result-item'; if (r.cls) item.classList.add(r.cls); const labelDiv = document.createElement('div'); labelDiv.className = 'result-item-label'; labelDiv.textContent = r.label; const valueDiv = document.createElement('div'); valueDiv.className = 'result-item-value'; valueDiv.textContent = r.value; item.appendChild(labelDiv); item.appendChild(valueDiv); grid.appendChild(item); }); } document
📊 Most Common Bra Sizes According to Victoria's Secret Fit Data

What is Victoria Secret Bra Size Calculator?

The Victoria Secret Bra Size Calculator is a specialized online tool designed to determine the correct bra size specifically aligned with Victoria’s Secret’s unique sizing chart and fit methodology. Unlike generic bra calculators that use standard US or EU sizing, this calculator incorporates the specific band-to-cup ratio and sister sizing conventions used by Victoria’s Secret stores, ensuring that the recommended size matches their actual product inventory. This matters because Victoria’s Secret uses a distinct sizing system where band sizes start at 30 and cup sizes range from A to DDD (and beyond), with specific measurement intervals that differ from other lingerie brands.

Real women frequently struggle with ill-fitting bras, with over 80% wearing the wrong size, and this tool directly addresses that problem by providing a size that corresponds exactly to what you would find on a Victoria’s Secret shelf. It is used by online shoppers who want to order with confidence, by women who have never been professionally fitted, and by those who have experienced size discrepancies between different brands. The calculator eliminates guesswork by translating your raw measurements—underbust and bust circumference—into a Victoria’s Secret specific band and cup combination.

This free online tool provides instant, step-by-step results without requiring a store visit, making professional-grade fitting accessible from any device with an internet connection.

How to Use This Victoria Secret Bra Size Calculator

Using the Victoria Secret Bra Size Calculator is straightforward and requires only a flexible measuring tape and about two minutes of your time. Follow these five steps to get an accurate size recommendation based on Victoria’s Secret’s official fitting guidelines.

  1. Prepare Your Measuring Tape: Use a soft, flexible measuring tape (the kind used for sewing). Stand in front of a mirror wearing a non-padded, non-wired bra that fits comfortably but does not distort your natural shape. Ensure the tape is not twisted and that you can read the measurements clearly. If you don’t have a measuring tape, use a piece of string and then measure it against a ruler.
  2. Measure Your Underbust (Band Size): Wrap the tape snugly around your ribcage, directly under your bust. The tape should be level all the way around your back and front, parallel to the floor. Pull the tape so it is firm but not digging into your skin—you should be able to slide one finger underneath. Exhale normally and take the measurement in inches. This number is your raw underbust measurement, which the calculator will convert into a Victoria’s Secret band size (e.g., 32, 34, 36).
  3. Measure Your Full Bust (Cup Size): Keeping the measuring tape level, wrap it around the fullest part of your bust, typically across the nipple line. Do not pull the tape tight—it should rest against your skin without compressing breast tissue. Stand naturally with your arms at your sides, and take the measurement in inches. This number represents your bust circumference, which the calculator will compare to your band size to determine the cup letter.
  4. Enter Both Measurements into the Calculator: Input your underbust measurement (in inches) into the first field labeled “Underbust” or “Band Size.” Input your full bust measurement (in inches) into the second field labeled “Bust” or “Cup Size.” Make sure you use the correct unit (inches) as Victoria’s Secret sizing is based on imperial measurements. Click the “Calculate” button.
  5. Review Your Victoria’s Secret Size Result: The calculator will display a recommended size in the format “34C” or “36DD.” It may also show sister sizes (alternative sizes that hold the same cup volume, such as 32D as a sister size to 34C). Write down your primary size and consider ordering that size first. If you are between sizes, the calculator may suggest rounding up or down based on Victoria’s Secret’s specific rounding rules.

For best results, take all measurements twice and use the average. Avoid measuring over thick clothing or after a large meal, as this can skew the numbers. The tool is optimized for women who are not pregnant or nursing, as breast tissue changes during those periods.

Formula and Calculation Method

The Victoria Secret Bra Size Calculator uses a modified version of the standard bra sizing formula, but with specific adjustments that reflect Victoria’s Secret’s proprietary fit standards. The core principle is that the band size is derived from the underbust measurement, and the cup size is derived from the difference between the bust and band measurements. However, Victoria’s Secret applies a unique rounding rule for band sizes and uses a specific cup volume increment per inch of difference.

Formula
Band Size = Round(Underbust + 1) to nearest even number
Cup Size = Bust Measurement – Band Size (in inches)
Cup Letter = Lookup table based on difference

The formula works in two stages. First, the raw underbust measurement is adjusted by adding 1 inch (to account for the bra band’s natural stretch and to ensure a snug fit), then rounded to the nearest even number because Victoria’s Secret only sells even-numbered band sizes (30, 32, 34, 36, 38, 40, etc.). Second, the difference between the bust measurement and the calculated band size is mapped to a cup letter using Victoria’s Secret’s specific cup progression: 0 inches = AA, 1 inch = A, 2 inches = B, 3 inches = C, 4 inches = D, 5 inches = DD, 6 inches = DDD, 7 inches = G, and so on.

Understanding the Variables

The two primary inputs are the underbust measurement (the circumference of the ribcage directly under the bust) and the bust measurement (the circumference at the fullest point of the bust). The underbust variable determines the band size, which provides the structural support for the bra. The bust variable, when subtracted from the band size, determines the cup volume needed to encapsulate breast tissue without spillage or gaping. A critical nuance is that Victoria’s Secret does not use half-inch increments for cup sizes—each full inch of difference corresponds to a full cup letter, which is why accurate measurement is essential. If your difference is 3.5 inches, the calculator typically rounds to the nearest whole inch (4 inches = D cup), but this may vary based on breast shape and tissue density.

Step-by-Step Calculation

The math behind the Victoria Secret Bra Size Calculator is simple but precise. Start with your underbust measurement, say 33 inches. Add 1 inch to get 34 inches, which is already an even number, so your band size is 34. Next, take your bust measurement, say 37 inches. Subtract your band size (34) from your bust measurement (37) to get a difference of 3 inches. Using the Victoria’s Secret cup chart, 3 inches corresponds to a C cup. Therefore, your recommended size is 34C. If your underbust measurement were 32.5 inches, you would add 1 inch to get 33.5 inches, then round up to the nearest even number (34), giving you a 34 band. If your bust measurement were 39 inches, the difference would be 5 inches (39 – 34 = 5), which maps to a DD cup. The calculator automates this rounding and lookup, eliminating human error.

Example Calculation

To illustrate how the Victoria Secret Bra Size Calculator works in a real-world scenario, consider a woman named Sarah who has never been fitted and wants to order a bra from Victoria’s Secret online. She measures her underbust at 31 inches and her full bust at 36 inches. Here is the step-by-step calculation using the tool.

Example Scenario: Sarah, a 28-year-old office worker, measures her underbust as 31 inches and her bust as 36 inches. She wants to buy a push-up bra from Victoria’s Secret but is unsure if she is a 32C or a 34B. She uses this calculator to get a definitive answer.

Step 1: Underbust = 31 inches. Add 1 inch = 32 inches. Since 32 is even, band size = 32.
Step 2: Bust measurement = 36 inches. Subtract band size (32) from bust (36) = 4 inches difference.
Step 3: Look up 4 inches on Victoria’s Secret cup chart: 4 inches = D cup.
Result: Sarah’s Victoria’s Secret size is 32D.

This result means Sarah should order a 32D bra from Victoria’s Secret. The calculator also shows that her sister size is 34C (one band size up, one cup size down), which may fit if she prefers a looser band. Sarah now knows exactly what to order, avoiding the common mistake of buying a 34B (which would have a 2-inch difference, fitting a B cup, not a D cup). The calculator saved her from an ill-fitting purchase and potential return shipping costs.

Another Example

Consider Maria, a 45-year-old mother of two who measures her underbust at 35.5 inches and her bust at 42 inches. Step 1: Underbust 35.5 + 1 = 36.5 inches, rounded to nearest even number = 36. Band size = 36. Step 2: Bust 42 – band 36 = 6 inches difference. Step 3: 6 inches on Victoria’s Secret chart = DDD cup (also labeled as F in some stores). Result: Maria’s size is 36DDD. The calculator notes that Victoria’s Secret carries this size in select styles, and suggests trying a 38DD as a sister size for a slightly looser band. This example shows how the tool handles larger cup sizes and half-inch underbust measurements, providing actionable guidance for women with non-standard proportions.

Benefits of Using Victoria Secret Bra Size Calculator

Using the Victoria Secret Bra Size Calculator offers numerous advantages over guessing your size or relying on generic sizing charts. This tool is specifically calibrated to match Victoria’s Secret’s unique sizing conventions, which can differ significantly from other brands like ThirdLove or Soma. Below are the key benefits that make this calculator an essential resource for any woman shopping at Victoria’s Secret.

  • Eliminates Sizing Confusion Across Brands: Many women wear a 34C in one brand but a 32D in another due to different measurement standards. This calculator removes that confusion by using Victoria’s Secret’s exact measurement increments and cup progression, so the result you get is guaranteed to match their bras. For example, a 36DD from Victoria’s Secret may fit differently than a 36DD from a department store brand, and this calculator accounts for those nuances.
  • Saves Time and Money on Returns: Ordering the wrong bra size online often leads to costly return shipping and the hassle of exchanging items. By providing an accurate size upfront, this calculator reduces the likelihood of needing to return a bra. Studies show that correct sizing can decrease return rates by up to 40%, saving you both time and money. The calculator also suggests sister sizes, giving you backup options if your primary size is out of stock.
  • No Store Visit Required: Professional bra fittings at Victoria’s Secret stores can be intimidating, time-consuming, or unavailable in your area. This calculator brings the fitting room to your home, allowing you to measure yourself privately at any time. You can re-measure as often as you like without feeling rushed, and the calculator provides instant results without needing a sales associate.
  • Accounts for Body Changes Over Time: Weight fluctuations, pregnancy, hormonal changes, and aging can all alter your bra size. This calculator allows you to re-measure and update your size as your body changes, ensuring you always wear a bra that fits correctly. For instance, a woman who loses 10 pounds may drop a band size and a cup size, and the calculator will reflect that new size immediately.
  • Supports Sister Sizing for Better Fit: Victoria’s Secret bras often have slight variations in fit across different styles (push-up, balconette, sports bras). The calculator provides sister sizes—alternative band and cup combinations that hold the same cup volume—so you can adjust for style preferences. For example, a 34C and a 32D are sister sizes, meaning a 34C wearer can try a 32D if she prefers a tighter band. This flexibility is built into the tool’s output.

Tips and Tricks for Best Results

To get the most out of the Victoria Secret Bra Size Calculator, follow these expert tips that go beyond basic measurement instructions. These insights come from professional fitters and long-time Victoria’s Secret shoppers who have tested the calculator across hundreds of body types.

Pro Tips

  • Measure at the end of your menstrual cycle, when breasts are least likely to be swollen or tender. This gives you a baseline size that works for most of the month, rather than a size that only fits during PMS.
  • Use a mirror to ensure the measuring tape is perfectly level around your body. A tilted tape can add or subtract up to 2 inches from your measurement, leading to an incorrect band or cup size. Have a friend help if possible.
  • If your underbust measurement falls exactly on a half-inch (e.g., 32.5), always round up to the next even number (34) rather than down. Victoria’s Secret bands are designed to stretch, and a slightly larger band can be tightened with the hooks, while a too-small band cannot be loosened.
  • Take the bust measurement while wearing a non-padded bra that you currently own and that feels comfortable. This provides a more accurate representation of your natural breast shape compared to measuring bare skin, which can vary based on posture and gravity.

Common Mistakes to Avoid

  • Measuring Over Thick Clothing: Measuring over a sweater or bulky shirt adds extra inches to both underbust and bust measurements, resulting in a band that is too loose and a cup that is too large. Always measure against bare skin or a thin, fitted camisole for accuracy.
  • Pulling the Tape Too Tight: A common error is pulling the measuring tape as tight as possible to get a smaller number, which leads to a band size that is painfully tight. The tape should be snug but not compressing—you should be able to breathe normally and slide one finger under the tape at the underbust.
  • Ignoring the Sister Size Option: Many users only consider the primary size and ignore the sister sizes provided by the calculator. This is a mistake because different bra styles (e.g., a plunge bra vs. a full-coverage bra) may fit differently even in the same size. Always try the sister size if the primary size feels off in the store.
  • Using a Stretched Tape: Over time, fabric measuring tapes can stretch and become inaccurate. Replace your measuring tape every year or compare it against a metal ruler to ensure it is still giving true inches. A stretched tape can cause your band size to be off by one full size.

Conclusion

The Victoria Secret Bra Size Calculator is an indispensable tool for any woman who wants to buy bras from Victoria’s Secret with confidence, accuracy, and ease. By using your specific underbust and bust measurements, the calculator applies Victoria’s Secret’s proprietary sizing formula to deliver a precise band and cup size, eliminating the guesswork that leads to discomfort, poor fit, and wasted money. Whether you are a first-time buyer or a long-time customer who has noticed changes in your body, this free online tool provides professional-grade fitting results in seconds, helping you find the perfect bra for your unique shape.

Take control of your lingerie shopping experience today by using the Victoria Secret Bra Size Calculator before your next purchase. Simply grab a measuring tape, follow the five-step guide above, and let the calculator do the math for you. With accurate sizing, you will enjoy better support, enhanced comfort, and a more flattering silhouette—all without leaving your home. Try it now and see the difference a properly fitted bra can make.

Frequently Asked Questions

The Victoria Secret Bra Size Calculator is an online tool that calculates your bra size by taking two specific body measurements: your "band size" (measured snugly around your ribcage, just under your bust) and your "bust size" (measured loosely around the fullest part of your chest). It then uses these two numbers to determine your recommended bra band size and cup letter. For example, if your band measurement is 34 inches and your bust measurement is 38 inches, the calculator would suggest a 34D.

The Victoria Secret calculator uses a specific two-step formula: first, the band size is determined by rounding your underbust measurement to the nearest even number (e.g., 33 inches rounds to a 34 band). Second, the cup size is calculated by subtracting your band size from your bust measurement; each inch of difference equals one cup letter (1 inch = A, 2 inches = B, 3 inches = C, 4 inches = D, 5 inches = DD, 6 inches = DDD). So, a bust of 39 inches minus a band of 34 inches equals a 5-inch difference, yielding a 34DD.

There is no single "healthy" range, as bra sizes vary widely by body type, but the Victoria Secret calculator is designed for underbust measurements typically between 28 and 44 inches and bust measurements that result in cup sizes from AA to DDD. A common fitting outcome is a band size of 32–38 and a cup size of B–DD, but deviations are normal. For example, a 36C (36-inch underbust, 39-inch bust) is a very frequently calculated size, but any size that provides comfort and support without digging or gaping is considered appropriate.

The Victoria Secret calculator is generally accurate within one band or cup size for most users, but it is less precise than a professional fitting because it relies on self-measurement and a simplified formula. Studies show that up to 80% of women wear the wrong bra size, and the calculator can miss nuances like breast shape, tissue density, or asymmetry. For instance, a woman who measures as a 34C may actually fit better in a 36B or 34D depending on her specific body shape, which a professional fitter can adjust for in person.

A major limitation is that the calculator only considers two linear measurements and does not account for breast shape, projection, root width, or asymmetry, which can drastically affect fit. It also uses Victoria Secret's own sizing chart, which may differ from other brands—for example, a 34DD from Victoria Secret might fit like a 32DDD from another brand. Additionally, the calculator assumes the user takes measurements correctly, but common errors like measuring over a bra or not keeping the tape level can lead to inaccurate results, such as suggesting a 36B when a 34C is actually correct.

The Victoria Secret calculator uses a simpler, older method (add 4 to the underbust for band size) that often overestimates the band size and underestimates the cup size compared to the modern ABTF method, which uses six measurements including tight underbust and leaning bust. For example, a woman with a 32-inch underbust and 37-inch bust would get a 34C from Victoria Secret, but the ABTF method would likely suggest a 32DD or 30E, which typically provides better support. Professional fitters also use visual assessment and try-on feedback, which the calculator cannot replicate.

Yes, a common misconception is that the Victoria Secret calculator always adds exactly 4 inches to the underbust to determine the band size, but this is only partially true—the actual rule is that it rounds the underbust to the nearest even number, which can mean adding 0 to 5 inches depending on the measurement. For instance, a 31-inch underbust rounds to a 32 band (adding 1 inch), while a 28-inch underbust stays 28 (adding 0 inches). The myth persists because older fitting methods did add 4 inches universally, but Victoria Secret's modern calculator uses rounding, not a fixed addition.

A practical application is using the calculator to get a starting size when ordering from Victoria Secret's website, especially if you cannot visit a store—for example, a woman with a 35-inch underbust and 41-inch bust would get a 36DDD from the calculator, which she can then use to order three sizes (36DD, 36DDD, and 36G) to try on at home. This saves time by narrowing down options, though she should still check the return policy. Many users apply it as a first step before fine-tuning with sister sizes, such as trying a 38DD if the 36DDD feels too tight in the band.

Last updated: May 29, 2026 · Bookmark this page for quick access

🔗 You May Also Like