Countertop Calculator

MeasureSquare’s Countertop Cost Calculator is a web-based estimating tool that calculates square footage areas and generates a cost estimate with detailed edge finishes, splash and cutout options.

  • User interface calculates estimates and layouts for tops, splashes, laminates, edge finishes, cutouts, and more.
  • Work in both metric and imperial measurement systems.
  • Has been used by homeowners, sales reps, contractors, fabricators, and installers to estimate product square footage, linear feet of edge finishes, cutouts, slab layouts, etc.
Get Started
Countertop Calculator

Quick & Easy to Use

  • Self-explanatory and easily to use graphical interface
  • Can be hosted on a store website to engage homeowners to get their own estimates and save sales reps’ time to close a sales

Specify Each Room's Details with Visual Drawings

  • For each edge, choose whether it will have a finished edge, wall splash, laminate edge, or number of cutouts.
  • Customize wall splash by specifying height.

Select product pricing options

  • Enable web visitors to shop from product catalogs with different budget needs
  • Customize splash, edge finish, laminate edge, or cutout of their spaces

Advanced Settings

  • Works for both metric and imperial measurement.
  •  Customize drawing color, product name, edge finish option and cut out pricings.

Generate a Complete Cost Estimate Report

  • Create PDF documents that be easily sent to homeowners as a quick estimate with a list of areas and quantities broken down by each countertop.
  • As web lead generation tool, to engage prospects and customers.

Host Our Countertop Calculator on Your Website

  • The Countertop Calculator can be hosted on a flooring website easily by embedding a few lines of code in HTML webpage.
  • It provides a proactive way to assist web visitor to engage your product and services, and eventually generates leads for your business.
  • See the YouTube tutorial by the side.
    Contact calculator@measuresquare.com for more info.

Custom HTML/JS code to put into hosting web page

Embed the Calculator Button

Please add the following excerpts of code to your website HTML to embed the calculator into your website. After adding the code to your page, click on the button labeled “Calculate” to use the calculator. To close it, click on the button labeled “Close”.

  • <input type="button" id="calculateBtn" value="Calculate"/>
  • <input type="button" id="calculateBtn" value="Calculate"/>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
    <script
    src="https://calculator.measuresquare.com/scripts/jquery-m2CountertopCalculatorV3.js"></script
    >
    <script>
    $(function () {
    $('#calculateBtn').m2Calculator({
    cancel: function () {
    },
    callback: function (data) {
    console.log("Callback function called!");
    }
    });
    });
    </script>