Skip to content
Last updated: June 4, 2026

Board and Batten Calculator

0 people find this calculator helpful
0

Table of contents

Scope and Units

I’m Brandon Keller, construction estimator & scheduler. This calculator sizes vertical board-and-batten counts for a single flat wall. Units: ft (height, width), in (board width, batten spacing). Outputs are counts of vertical pieces. Planning estimate only—validate against drawings and supplier lengths.

Inputs and Variables

  • Wall Height (ft) — not used in the count formulas here but needed for cut lengths and waste planning.
  • Wall Width (ft) — horizontal run to cover.
  • Board Width (in) — exposed face width of the vertical board.
  • Batten Spacing (in) — center-to-center spacing between battens.

Typical ranges: board width 1–12 in; batten spacing 10–16 in interior, 12–24 in exterior (wind/load and look dependent). Use consistent units.

Equations (Calculator-Ready)

Variables: wallWidth = W (ft), boardWidth = BW (in), battenSpacing = BS (in).

totalBoards = Math.ceil(wallWidth / (boardWidth/12 + battenSpacing/12))
totalBattens = Math.ceil(wallWidth / (battenSpacing/12))

Notes: in→ft conversion by dividing inches by 12. Ceiling rounds up to ensure full coverage.

Worked Example (US locale)

Given W = 20 ft, BW = 1 in, BS = 12 in:

  • Board module width = (1/12 + 12/12) ft = 1.0833 ft
  • totalBoards = ceil(20 / 1.0833) = 24
  • totalBattens = ceil(20 / (12/12)) = 20

Result: 24 boards, 20 battens. Sanity check: 24 modules × 1.0833 ft ≈ 26.0 ft total board+space coverage; battens at 12 in centers across 20 ft ≈ 20 pieces—aligns with 1 ft spacing.

Production & Waste Assumptions

  • Length selection: common stock 8–16 ft; splice location impacts waste. For interior, expect 5–10% waste; exterior 8–15% (cuts, defects).
  • Height cuts: add trim/base/crown interfaces—deduct overlaps before cutting.
  • Site factors: out-of-plumb walls, outlets, and window returns increase cut time and waste.

Material and Cost Planning (Simple)

  • Direct pieces: use totals above. Multiply by wall height for linear footage.
  • Waste: add 10% default. Example: 24 boards → 27 boards; 20 battens → 22 battens.
  • Labor pacing: 20–35 LF/hr per installer for layout, fastening, and cleanup (interior, unobstructed). Exterior siding varies with elevations and weather.

Non‑advisory note: This is a planning estimate. Confirm lengths, profiles, fastening, and weather resistive barriers with project specs and vendor quotes.

Frequently Asked Questions

What do the formulas in this calculator assume?

They assume vertical boards plus battens at regular spacing across a flat wall, using inches-to-feet conversion and rounding up with ceiling to ensure coverage.

Why doesn’t wall height change the counts?

Counts are horizontal; height drives cut lengths, linear footage, and waste, but not the piece counts in these formulas.

How do I handle outside corners and trim?

Add corner/edge trims separately and account for overlaps before cutting boards; this can reduce board height and affect waste.

What waste factor should I use?

Interior: 5–10%; exterior: 8–15%. Increase for short stock, complex cutouts, or out-of-plumb walls.

How do I convert counts to linear footage?

Linear footage per item = wall height (ft). Total LF = count × wall height. Apply waste after.

What spacing should I choose for battens?

Interior aesthetics often 10–16 in o.c.; exterior siding 12–24 in o.c. Verify with design intent and local exposure requirements.

Common pitfalls to avoid?

Mixing inches and feet, double‑counting boards at edges, ignoring trim overlaps, and not rounding up stock to available lengths.

Share Your Feedback