Manually retyping unit prices into every estimate invites mistakes and makes it painful to update pricing later. Linking your estimate sheet to a separate price list with VLOOKUP fixes both problems at once.
=VLOOKUP(A2,Prices!A:B,2,FALSE) — this looks up the item name in column A and returns its price from the Prices tab.=Quantity*UnitCost as before, now driven by a price that updates everywhere the moment you change it once on the Prices tab.=SUMIF(TradeColumn,"Electrical",LineTotalColumn) gives you a trade-by-trade breakdown for the bid summary page without manual re-entry.This structure turns a one-off estimate into a living pricing system: update a material cost in one place, and every project template that references it recalculates instantly.
Back to all tutorials →