Plan your blanket project with confidence — get your yarn estimate, cost range, and warmth rating in seconds.
📏 Choose a Size — or enter custom dimensions below
📐 Blanket Details
Fingering / Lace
Sport
DK
Worsted ★
Bulky
Super Bulky / Arm Knit
Crochet
Knitting
Arm Knitting
Tunisian Crochet
Granny Square
Chunky / Cables
Loose / Open Stitch
Standard
Dense (bobble, waffle, cables)
10% — Solid color
15% — Color changes
20% — Complex pattern
25% — First-time project
Your Cozy Throw Blanket
50” × 60” · Crochet · Standard Density
0
Yards Needed
0
Skeins
0 lb
Approx. Weight
☁️
Warmth Rating
Medium Warmth
💰 Estimated Cost Range
$40 – $120
Beginner Friendly
Always buy 1–2 extra skeins. Dye lots vary — matching after the fact can be impossible.
Yarn Estimates by Blanket Size
How Much Yarn for a Baby Blanket?
A standard baby blanket (30”×36”) in worsted-weight yarn needs roughly 700–900 yards for crochet or 600–780 yards for knitting — about 4–5 skeins of a 200-yard skein. Baby blankets are the perfect first blanket project: quick to finish and a truly cherished gift.
How Much Yarn for a Throw Blanket?
A couch throw (50”×60”) in worsted weight needs approximately 1,650–2,100 yards — about 9–11 skeins. This is the most popular blanket size: large enough to use every day, small enough to finish in a season. Budget $45–$110 depending on yarn brand.
How Much Yarn for a Twin Blanket?
Twin-size blankets (60”×80”) are a serious commitment at 2,600–3,300 yards of worsted weight (13–17 skeins). Consider granny-square or modular construction to break the project into manageable, portable pieces.
How Much Yarn for a Queen-Size Blanket?
A full queen blanket (90”×100”) requires 4,800–6,200 yards — 24–31 skeins of worsted weight. Budget $120–$310+ and plan for 6–12 months of consistent work. Bulky or super bulky yarn dramatically reduces yardage and project time.
Chunky Blanket Yarn Estimator
Super bulky and arm-knit blankets use far fewer yards because the yarn is so thick. A chunky throw in super bulky needs only 180–280 yards — often 1–3 specialty skeins. These projects finish in an afternoon and are wildly popular gifts. Use the Project Type selector above and choose “Arm Knitting” or “Super Bulky” weight for an accurate estimate.
Frequently Asked Questions
How do I calculate how much yarn I need for a blanket?
Multiply your blanket width by length to get the area in square inches, then apply a yards-per-square-inch factor based on your yarn weight. Worsted weight (the most common) uses roughly 1.0 yard per square inch for standard crochet. Apply project-type and density adjustments, then add 15–20% buffer for weaving in ends and gauge variation. This calculator handles all of that automatically.
Does stitch choice really affect yarn usage?
Yes — significantly. Dense stitches like bobble, waffle, moss, or cables can use 25–40% more yarn than simple single or double crochet. Select “Dense / Heavy” density in the calculator for textured blankets. Open lace and arm-knit patterns use the least yarn per square inch.
What is the most common blanket size?
The throw (approximately 50”×60”) is by far the most popular blanket size. It is large enough to use on a couch or as a lap blanket, drapes beautifully, and is achievable in a reasonable time frame. Baby blankets (30”×36”) are the most popular gifting size.
How many skeins do I need for a chunky blanket?
It depends heavily on the yard count per skein. Specialty super bulky blanket yarn is often sold in 28–87 yard skeins. A throw in arm-knitting yarn might need 6–12 small skeins, or 2–3 of a larger cone. Always check the yardage label — weight alone does not tell you how far yarn will go.
Should I always buy extra yarn?
Almost always yes. We recommend 10–25% buffer depending on your project. Color changes, weaving in ends, gauge inconsistencies, and mistakes all consume extra yarn. Most critically: buy all your yarn from the same dye lot. If you run short later, matching the color can be impossible.
What yarn weight is best for blankets?
Worsted weight (size 4) is the sweet spot for most blankets — substantial enough to feel cozy, quick enough to finish, and widely available at every price point. Bulky (size 5) makes a faster, warmer blanket. Super bulky / arm-knit yarn creates the dramatic chunky look trending on social media. Fingering weight produces heirloom-quality lightweight blankets but takes much longer to complete.
How do I estimate the cost of a blanket project?
Once you know your yardage, divide by the yards-per-skein of your chosen yarn to get skein count, then multiply by price per skein. Budget yarns run $3–6 per skein; mid-range brands $8–14; premium or indie-dyed $18–35+. The calculator provides a rough cost range automatically. Always check current prices — yarn costs vary significantly by brand and retailer.
(function(){
function getWarmth(wt,den){
var score=(1/wt)*den;
if(score<0.8)return['🌿','Ultra Lightweight'];
if(score<1.2)return['🌸','Lightweight'];
if(score<1.9)return['☁️','Medium Warmth'];
if(score<2.8)return['🧣','Medium-Heavy'];
if(score<4.5)return['🍂','Warm & Cozy'];
return['❄️','Heavy Winter'];
}
function getSizeLabel(w,h){
if(w<=35&&h<=42)return'Baby';
if(w<=55&&h<=65)return'Cozy Throw';
if(w<=65&&h<=85)return'Twin';
if(w<=95&&h95)return’King’;
return’Custom’;
}
var wfact={0.9:1.5,0.75:2,0.65:2.5,0.55:3,0.33:4.5,0.18:7};
function nearestWt(wt){
return Object.keys(wfact).map(Number).reduce(function(a,b){return Math.abs(b-wt)<Math.abs(a-wt)?b:a;});
}
function calc(){
var bw=document.querySelector('#bky-w');
var bh=document.querySelector('#bky-h');
var bwt=document.querySelector('#bky-wt');
var btp=document.querySelector('#bky-type');
var bden=document.querySelector('#bky-den');
var bsk=document.querySelector('#bky-sk');
var bbuf=document.querySelector('#bky-buf');
var w=parseFloat(bw.value)||50;
var h=parseFloat(bh.value)||60;
var wt=parseFloat(bwt.value)||1.0;
var tp=parseFloat(btp.value)||1.0;
var den=parseFloat(bden.value)||1.0;
var sk=parseFloat(bsk.value)||200;
var buf=parseFloat(bbuf.value)||1.15;
var typeName=btp.options[btp.selectedIndex].text;
var skill=btp.options[btp.selectedIndex].getAttribute('data-skill')||'Beginner Friendly';
var denName=bden.options[bden.selectedIndex].text.split('(')[0].trim();
var area=w*h;
var yards=Math.round(area*wt*tp*den*buf);
var skeins=Math.ceil(yards/sk);
var sqft=area/144;
var nwt=nearestWt(wt);
var oz=sqft*wfact[nwt]*den;
var lbs=(oz/16).toFixed(1);
var warmth=getWarmth(wt,den);
var costLow=Math.round(skeins*4);
var costHigh=Math.round(skeins*15);
var label=getSizeLabel(w,h);
document.querySelector('#bky-res-title').textContent='Your '+label+' Blanket';
document.querySelector('#bky-res-sub').textContent=w+'″ × '+h+'″ · '+typeName+' · '+denName;
document.querySelector('#bky-yards').textContent=yards.toLocaleString();
document.querySelector('#bky-skeins').textContent=skeins;
document.querySelector('#bky-weight').textContent=lbs+' lb';
document.querySelector('#bky-w-icon').innerHTML=warmth[0];
document.querySelector('#bky-w-val').innerHTML=warmth[1];
document.querySelector('#bky-cost').textContent='$'+costLow+' – $'+costHigh;
document.querySelector('#bky-skill').textContent=skill;
document.querySelector('#bky-results').classList.add('show');
document.querySelector('#bky-results').scrollIntoView({behavior:'smooth',block:'nearest'});
}
document.querySelector('#bky-calc').addEventListener('click',calc);
document.querySelector('#bky-w').addEventListener('keydown',function(e){if(e.key==='Enter')calc();});
document.querySelector('#bky-h').addEventListener('keydown',function(e){if(e.key==='Enter')calc();});
document.querySelectorAll('#bky-sp .sp-item').forEach(function(p){
p.addEventListener('click',function(){
document.querySelectorAll('#bky-pills .pill').forEach(function(x){x.classList.remove('active');});
p.classList.add('active');
document.querySelector('#bky-w').value=p.getAttribute('data-w');
document.querySelector('#bky-h').value=p.getAttribute('data-h');
calc();
});
});
})();
{“@context”:”https://schema.org”,”@type”:”FAQPage”,”mainEntity”:[{“@type”:”Question”,”name”:”How do I calculate how much yarn I need for a blanket?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Multiply your blanket width by length to get the area in square inches, then apply a yards-per-square-inch factor based on yarn weight. Worsted weight uses roughly 1.0 yard per square inch for standard crochet. Add 15-20% buffer for waste and ends.”}},{“@type”:”Question”,”name”:”Does stitch choice affect yarn usage?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Yes. Dense stitches like bobble, waffle, or cables can use 25-40% more yarn than simple stitches. Select Dense density in the calculator for textured blankets.”}},{“@type”:”Question”,”name”:”What is the most common blanket size?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”The throw (approximately 50 x 60 inches) is the most popular blanket size: large enough to be useful, small enough to finish in a season.”}},{“@type”:”Question”,”name”:”How many skeins do I need for a chunky blanket?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”A throw in super bulky yarn needs only 180-280 yards total. Check the yardage per skein carefully as specialty chunky yarn is sold in small skeins of 28-87 yards.”}},{“@type”:”Question”,”name”:”Should I buy extra yarn?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Yes. Buy 10-25% more than calculated. Color changes, weaving in ends, and gauge variation consume extra yarn. Most importantly, buy all yarn from the same dye lot.”}},{“@type”:”Question”,”name”:”What yarn weight is best for blankets?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Worsted weight (size 4) is the most popular – cozy, quick to work, and widely available. Bulky makes a faster, warmer blanket. Super bulky creates the chunky look trending on social media.”}},{“@type”:”Question”,”name”:”How do I estimate the cost of a blanket project?”,”acceptedAnswer”:{“@type”:”Answer”,”text”:”Divide total yardage by yards-per-skein to get skein count, then multiply by price per skein. Budget yarns cost $3-6 per skein; mid-range $8-14; premium $18-35 or more. The calculator provides a rough cost range automatically.”}}]}
The calculators and tools on Formula Factory are provided for general guidance and informational purposes only. Results are estimates based on standard formulas and the values you enter — they do not constitute professional engineering, electrical, or architectural advice. Always verify calculations with a qualified professional before making decisions for any safety-critical, code-compliance, or commercial application. Formula Factory makes no representations or warranties as to the accuracy or completeness of any result, and accepts no liability for errors, omissions, or any outcomes arising from reliance on this information.