Material Calculator

Construction Materials Calculator

Enter your dimensions to calculate the volume needed in cubic yards.

Enter your dimensions




Total
top of page
Screened Sand

Screened Sand (Coarse, Dirty)

$10.00Price

Screened sand is a coarse grain sand that is UNWASHED. Naturally occurring material that is screened out of the bank material. This sand is has not been washed which gives it the ability to be compacted, if desired. It has many uses from a basic fill sand to building a base for pavers, pools, and many other landscape and building uses.

Price is per ton.

Contact Us:

360-691-0396

menzellake@hotmail.com

Menzel Lake Gravel

A division of Lake Industries LLC

Mail: PO Box 1494, Marysville, WA 98270

Pit: 7800 Menzel Lake Rd, Granite Falls, WA 98252

We Accept:

CREDIT/DEBIT CARDS or CASH

© 2026 by MENZEL LAKE GRAVEL. Powered and secured by Wix

bottom of page
function calculateVolume() { // Get values from the HTML input fields let length = parseFloat(document.getElementById("length").value); let width = parseFloat(document.getElementById("width").value); let depthInches = parseFloat(document.getElementById("depth").value); // Check if the inputs are valid numbers if (isNaN(length) || isNaN(width) || isNaN(depthInches) || length <= 0 || width <= 0 || depthInches <= 0) { document.getElementById("vol").value = "Invalid Input"; return; } // Convert depth from inches to feet (1 foot = 12 inches) let depthFeet = depthInches / 12; // Calculate volume in cubic feet let volumeCubicFeet = length * width * depthFeet; // Convert volume to cubic yards (1 cubic yard = 27 cubic feet) let volumeCubicYards = volumeCubicFeet / 27; // Display the result, rounded to two decimal places document.getElementById("vol").value = volumeCubicYards.toFixed(2) + " cu yd"; }