Punch lists tend to live in someone's notebook or a dozen text messages. Centralizing them in a tracked spreadsheet makes closeout status visible to the whole team instead of just whoever wrote it down.
Open,In Progress,Closed. This keeps status entries consistent so formulas can count them reliably.=COUNTIF(StatusColumn,"Open") gives a running count of unresolved items — put this at the top of the sheet so it's the first thing anyone sees.=COUNTIF(StatusColumn,"Closed")/COUNTA(StatusColumn) shows what fraction of the punch list is actually resolved, formatted as a percentage.=$F2="Open" (adjust the column letter) with a red fill; a second rule for "Closed" with green. Entire rows update automatically as status changes.=IF(Status="Closed",DateClosed-DateIdentified,TODAY()-DateIdentified) — this surfaces items that have been sitting open too long, not just how many exist.A live punch list like this replaces the walk-through-and-guess approach to closeout with an actual, shareable record of what's left.
Back to all tutorials →