$ 48.00
Use the calculator below to quickly figure the number of yards needed for your project.
Description
Use the calculator below to quickly figure the number of yards needed for your project.
function tyc_calc() {
// get inputs
var l = document.volcalc.length.value; // in feet
var w = document.volcalc.width.value; // in feet
var d = document.volcalc.depth.value; // in inches
// Convert length in feet to yards
l = l / 3;
// Convert width in feet to yards
w = w / 3;
// Convert depth in inches to yards
d = d / 36;
// Calculate volume in yards
var v = l * w * d;
// Round numbers by the default (whole), or to hundredths if that attribute is set
var v = Math.ceil(v);
document.volcalc.vol.value = v; // in yards
}
Enter your dimensions
Enter Length (Ft)
Enter Width (Ft)
Enter Depth (In)
Total
Total Yards Needed
