Studio Matrx Monthly · Volume 1 · Issue 4 · September 2026
Amogh N P
 In loving memory of Amogh N P — Architect · Designer · Visionary 
Spreadsheets & Small ToolsLesson 8.3
Claude for Architects & Designers/Module 8 · Code & Automation

Lesson 8.3 · Code & Automation

Spreadsheets & Small Tools

Most of a designer's daily maths lives in a spreadsheet - and Claude is excellent at formulas. Ask it for the right function, build a small area and cost sheet, and verify the totals, because the numbers are yours.

12 min Interactive lessonFree · open lessonByAmogh N P· Architect & interior designer
The hook

You do not need to memorise a single spreadsheet function again - but you do need to check that the total is right.

Long before any of us touched Grasshopper or Revit scripting, we were already coding - in spreadsheets. An area statement, a rough cost check, an FF&E budget, a daylight-hours tally: these are small programs, and the formulas in the cells are the code. Most designers know a handful of functions and reach a wall the moment a job needs a lookup table, a conditional, or a clean way to round. That wall is gone. You describe the columns you have and the answer you want in plain English, and Claude writes the exact formula - including the ones you never learned - and explains what each part does.

The spreadsheet is also the friendliest possible place to build the read-run-verify habit, because the stakes and the checks are both right in front of you. A formula's result sits in a cell you can sanity-check against a hand calculation in seconds. And it needs checking: Claude can write a formula that references the wrong column, rounds the wrong way, or quietly excludes a row, and it will look perfectly finished. The discipline is the same as everywhere in this module - Claude writes the formula; you verify the number - but here it is fast, visible and low-risk, which makes it the ideal place to make the habit second nature.

Describe columns -> get formula -> understand it -> check one cell -> fill down -> check total.

The spreadsheet is where design maths lives

Walk through a normal project and count the spreadsheets. The area statement that reconciles carpet, built-up and super built-up areas against the brief. The order-of-magnitude cost check before the client meeting. The FF&E schedule with quantities, unit rates and lead times. The finishes take-off, the fee breakdown, the daylight or occupancy tally. Each is a small tool, and each is exactly the kind of structured, repetitive numerical work Claude handles well - both writing the formulas and, just as usefully, explaining and fixing the ones you already have but no longer trust.

What holds most designers back is not the idea but the syntax: knowing that a lookup or a conditional total is possible, but not the incantation. This is precisely where Claude shines, because spreadsheet formulas are a small, well-documented language it knows thoroughly. You describe your columns - "A has the room name, B the length in metres, C the width" - and the answer you want - "I need each room's area, and a grand total" - and Claude gives you the formula and tells you where to put it. The figure opposite shows a small area and cost sheet of exactly this kind: rooms down the side, dimensions and rates across, areas and costs computed, totals at the foot.

Because the results are visible and instant, the spreadsheet is also the best training ground for this whole module's discipline. When Claude hands you a formula, you paste it into one cell, check that single result against a quick mental or calculator estimate, and only then fill it down the column. That one-cell check before you fill down is the spreadsheet version of "run it on a sample" - cheap, fast, and the thing that catches a wrong-column reference before it silently poisons a hundred rows and a total you present to a client.

A SMALL AREA AND COST SHEETRoomLWArea =L*WRateCostLiving5.04.020.0180036000Bedroom3.63.311.9180021420Kitchen3.02.78.1220017820TOTAL =SUM()40.075240Area cell: =B2*C2 Cost cell: =D2*E2 Total: =SUM(F2:F4)Claude writes the formulas; you check one row before trusting them all.
Zoom
A small costed area statement of the kind Claude builds from a plain-English brief: rooms down the side, length and width across, area computed as length times width, a rate, a cost, and totals at the foot. Claude writes the formulas; you check one row - Living at 5.0 by 4.0 must read 20.0 - before trusting the whole column and the totals.

A spreadsheet is a small program. The formulas are the code. Check one cell before you fill down.

Asking Claude for the right formula

The quality of the formula you get back depends almost entirely on how clearly you describe your sheet. Name the columns and what they hold, with units; state exactly what you want computed and where; and mention any rule - rounding, a rate that varies by room type, ignoring blank rows. Vague in, vague out. Precise in, and Claude writes a formula you can drop straight in. Here is the core of an area and cost sheet described plainly and answered in formulas:

text
Columns:  A Room | B Length(m) | C Width(m) | D Area | E Rate | F Cost

Area of each room   D2:  =B2*C2
Cost of each room   F2:  =D2*E2
Total area          =SUM(D2:D20)
Total cost          =SUM(F2:F20)

That is the whole backbone of a costed area statement in four formulas. When the job gets a little harder, the same clear-description habit gets you the harder function. Two you will use constantly are a lookup - pulling a rate from a separate rate table instead of typing it per row - and a clean round:

text
Rate from a lookup table (rates on a sheet named 'Rates', cols A:B):
F2:  =D2 * VLOOKUP(A2, Rates!$A$2:$B$50, 2, FALSE)

Round a cost to whole rupees (no paise):
=ROUND(D2*E2, 0)

Each room's share of the total area, as a percentage:
=D2/SUM($D$2:$D$20)

Always ask Claude to explain the parts, because a formula you understand is a formula you can check. In the VLOOKUP above, for instance, that final FALSE demands an exact match on the room type - a detail that, if it were TRUE, could silently return the wrong rate. You do not need to memorise this; you need Claude to tell you it is there so you know what to verify.

ANATOMY OF A FORMULA=ROUND(B2*C2, 0)= tells the sheet the cell is a formula, not textROUND( ... ) a built-in function; here it rounds the resultB2*C2 the calculation - length times width, 0 the second input: keep zero decimal places
Zoom
Reading a formula part by part - =ROUND(B2*C2, 0). The equals sign tells the sheet the cell is a formula, ROUND is a built-in function, B2*C2 is the calculation (length times width), and the second input 0 keeps zero decimal places. Ask Claude to explain each part; a formula you understand is a formula you can check.

A small area and cost sheet, built with Claude

Let us build the sheet in the figure end to end, the way you actually would. You start with what you have: a list of rooms and their dimensions. You tell Claude the columns and ask for the area column; it gives you =B2*C2 for D2 and tells you to fill it down. You paste it into D2 only, glance at it - Living at 5.0 by 4.0 should read 20.0 - and because it does, you fill the column. You add rates in column E, ask for cost, get =D2*E2 in F2, check one row on a calculator, and fill down. Finally you ask for the totals and get =SUM(D2:D20) and =SUM(F2:F20) at the foot. In five minutes you have a costed area statement, and you have verified it as you built it.

The dollar's-worth of extra value comes from the small refinements Claude adds when you ask. "Round the costs to whole rupees" gives you the ROUND wrapper. "Add a column showing each room's percentage of total area" gives you the share formula with the clever absolute reference ($D$2:$D$20) that keeps the denominator fixed as you fill down - a detail that trips up most self-taught spreadsheet users and that Claude gets right and explains. "Pull the rate from my rate table instead of typing it" upgrades you to the VLOOKUP. Each request is plain English; each answer is a formula plus an explanation.

If you live in Google Sheets, one more trick is worth knowing because Claude will offer it: filling a whole column with a single formula rather than dragging one down every row.

text
Fill the entire Area column at once (Google Sheets):
D2:  =ARRAYFORMULA(IF(B2:B20="", "", B2:B20*C2:C20))

That one cell computes every area and cleanly leaves blank rows blank. It is exactly the kind of thing you would never look up but will happily use once Claude writes and explains it - and, as always, you verify one row before trusting the column.

A SMALL AREA AND COST SHEETRoomLWArea =L*WRateCostLiving5.04.020.0180036000Bedroom3.63.311.9180021420Kitchen3.02.78.1220017820TOTAL =SUM()40.075240Area cell: =B2*C2 Cost cell: =D2*E2 Total: =SUM(F2:F4)Claude writes the formulas; you check one row before trusting them all.
Zoom
A small costed area statement of the kind Claude builds from a plain-English brief: rooms down the side, length and width across, area computed as length times width, a rate, a cost, and totals at the foot. Claude writes the formulas; you check one row - Living at 5.0 by 4.0 must read 20.0 - before trusting the whole column and the totals.

Verify the totals - the numbers are yours

Everything in this lesson has a single non-negotiable at the end: the number you present is yours, whatever wrote the formula. Claude can reference the wrong column, sum a range that stops one row short, round in a way that shifts a total, or apply a lookup that silently misses. None of these throws an error; the sheet just shows a wrong, confident number. So verification is not optional politeness - it is the professional act that makes the tool safe to use in front of a client or on a tender.

The checks are quick and concrete. Check one representative cell by hand before filling a formula down a column - the one-cell check is your fastest catch. Sanity-check the totals against a rough expectation: if you know the flat is around forty square metres, a total area of four hundred or four is telling you something is wrong. Watch the edges of your ranges - a SUM(D2:D19) that should have been D2:D20 is the classic silent error, dropping the last room. And when a lookup or conditional is involved, test it against a case whose answer you already know: give it a room type whose rate you can see in the table and confirm the formula returns that exact rate.

Build these into the making, not a separate audit at the end. The beauty of the spreadsheet is that verification costs seconds and is visible - which is why it is the perfect place to cement the habit that runs through all of Module 8: describe clearly, let Claude write the formula, understand what it does, and check the number before you trust it. Do that here, on low-stakes sheets, until it is reflex, and you will carry the same reflex into the higher-stakes automation of Rhino, Revit and the mini-apps in the next lesson. The formula is Claude's; the total, and the responsibility for it, are yours.

A closing word on ambition, because it is easy to under-use this. Once you are comfortable, spreadsheets with Claude reach a surprising distance: a fee proposal that recalculates as you change the scope, a comparison sheet that scores three finishes on cost, lead time and durability, a running tally that flags when an FF&E budget tips over its limit. None of these needs a course in Excel; each needs a clear description of the columns and the rule, and the same one-cell, one-total verification. The ceiling is not your formula knowledge any more - Claude supplies that. The ceiling is how clearly you can say what you want, and how faithfully you check what comes back.

ANATOMY OF A FORMULA=ROUND(B2*C2, 0)= tells the sheet the cell is a formula, not textROUND( ... ) a built-in function; here it rounds the resultB2*C2 the calculation - length times width, 0 the second input: keep zero decimal places
Zoom
Reading a formula part by part - =ROUND(B2*C2, 0). The equals sign tells the sheet the cell is a formula, ROUND is a built-in function, B2*C2 is the calculation (length times width), and the second input 0 keeps zero decimal places. Ask Claude to explain each part; a formula you understand is a formula you can check.

Wrong column, short range, wrong round - all silent. No error means nothing. Check the number.

Claude features & techniques in this lesson

Formula from plain English

Describing columns and the wanted result; Claude writes the function

Quality tracks the clarity of your description. Name columns, units and rules, and ask Claude to explain each part so you can check it.

Lookups & conditionals (VLOOKUP, IF, ROUND, ARRAYFORMULA)

The functions most designers never learned

Claude knows them thoroughly, but details like exact-match FALSE or a fixed absolute reference are yours to verify against a known case.

One-cell check before fill-down

The spreadsheet form of 'run it on a sample'

Not a Claude feature - your discipline. Verify one representative cell, then fill down; sanity-check totals before any number leaves the sheet.

Hands-on workshop

Workshop — build and verify a costed area sheet

You will build a small area and cost sheet with Claude in Google Sheets or Excel, and practise verifying as you go. Use real rooms from a project so the totals mean something to you and mistakes are obvious.

Claude.ai and Google Sheets or Excel. No prior formula knowledge needed.

Given & goal
Goal: a costed area statement you built with Claude and checked
Inputs: 6-10 real rooms with length, width and a rate
Time: ~25 minutes
  1. 1Describe your sheet to Claude: 'Columns are A room, B length in metres, C width, E rate per square metre. I want area in D, cost in F, and totals.' Ask for the formulas and where they go.
  2. 2Paste the area formula into D2 ONLY. Before filling down, predict that room's area and confirm the cell matches.
  3. 3Fill D down, add rates in E, paste the cost formula into F2, and check one row against a calculator.
  4. 4Ask Claude for the two totals and for a column showing each room's percentage of total area; have it explain the absolute reference it uses.
  5. 5Sanity-check: does the total area match your rough expectation for the space? Confirm the SUM range includes your last room.
  6. 6Ask Claude to round the client-facing costs to whole rupees, and save the sheet as a reusable template with a note on what you verified.

You’ll walk away with
A working, costed area statement built from plain-English requests, with each formula checked on one cell and the totals sanity-checked, saved as a reusable template.

The worked example

Three altitudes on the same idea

Read the band that fits you — or all three.

For the architectClaude across the whole practice

Spreadsheets are your fastest, lowest-risk entry to automating with Claude - start here before Rhino or Revit. Area statements, fee breakdowns, order-of-magnitude cost checks and reconciliations are all formula work Claude writes cleanly, including lookups and conditionals most of a team never learned. Build a couple of trusted, templated sheets for recurring jobs and reuse them. Keep the discipline visible: one-cell check before filling down, and a totals sanity-check before any number reaches a client or a consultant.

For the interior designerClaude for specs, client work & sourcing

This is squarely your daily tool - FF&E schedules, finishes take-offs, and client budgets are all spreadsheets. Ask Claude to build an FF&E sheet that pulls unit rates from a supplier table with VLOOKUP, totals by room, and flags items over budget. Have it round to clean figures for the client version. These are simple automations with no fear of code - just formulas Claude writes and explains. Verify one line against the supplier quote before you send the schedule; the numbers are yours to stand behind.

For the studentA Claude-fluent design skillset

Master spreadsheets with Claude and you will out-work peers who still type totals by hand. Use it to learn, not just to answer: ask why a VLOOKUP needs FALSE, what an absolute reference does, why a range must include the last row. Predict a formula's result before you trust it, then check. Area statements and cost sheets are exactly what studios will hand you early, and doing them fast, correctly and verifiably is an immediate, visible way to be useful from day one.

Misconception check

A spreadsheet formula from Claude is safe - if it were wrong, the sheet would show an error.

This is the trap that spreadsheets make especially easy. Most formula mistakes do not error at all - they return a confident, wrong number. A reference to the wrong column, a SUM range that stops one row short, a lookup set to approximate match, a round that shifts a total: each produces a clean-looking result and no warning. The sheet cannot know you meant D2:D20 when you wrote D2:D19. So you verify - check one cell by hand, sanity-check totals against a rough expectation, and test any lookup against a known case. A formula that runs is not a formula that is right.
Try it

Do it yourself

Quick checks on judgement, not on function names.

  1. 1Why is a spreadsheet a good description of 'a small program', and what are the code in it?
  2. 2What is the one-cell check, and what silent error does it catch before it spreads?
  3. 3In =VLOOKUP(A2, Rates!$A$2:$B$50, 2, FALSE), what does the FALSE guard against?
  4. 4Give two formula mistakes that produce a wrong number with no error message.
  5. 5Why is the spreadsheet the ideal place to build the read-run-verify habit for the rest of Module 8?
Take this with you

The one line to carry out

Claude writes the formula; you verify the total. Describe your columns and the answer you want in plain English, understand each part of the formula it returns, check one cell before you fill down, and sanity-check the totals - because the numbers you present are yours.
Take it further
References & further reading

Peer-reviewed journals & authoritative standards

  1. 01SpreadsheetWikipedia, 2026.
  2. 02Prompt engineering overviewAnthropic documentation, 2026.
  3. 03Meet ClaudeAnthropic, 2026.
Related lessons
Recap
Most design maths - area statements, cost checks, FF&E schedules - lives in spreadsheets, which are small programs whose formulas are the code. Claude writes the formulas you half-remember and the ones you never learned (VLOOKUP, ROUND, ARRAYFORMULA), from a clear plain-English description of your columns and the result you want, and explains each part. But formula mistakes are usually silent - wrong column, short range, wrong match - so you check one cell before filling down and sanity-check totals against expectation. The spreadsheet is the fastest, lowest-risk place to make the verify habit reflex.
Carry forward →

A spreadsheet is a tool for you. The last step is building a tool other people can use - a real, shareable calculator or checklist app that Claude constructs as an Artifact from a plain-English brief. That is the next lesson.

A

The author

Amogh N P

Architect, interior designer, and creative polymath. Studio Matrx began in his notebooks — his vision of design made honest, useful, and open to everyone. Its Academy is written and taught in his memory, and free, forever.

More about Amogh →