When three or four subs bid the same scope, comparing PDFs side by side is slow and error-prone. A structured comparison sheet turns that into a two-minute read.
=MIN(B2:E2) returns the lowest price across all bidders for that row.=INDEX($B$1:$E$1,MATCH(MIN(B2:E2),B2:E2,0)) looks up which bidder's column matches the lowest price and returns their name — no manual scanning required.=B2=MIN($B2:$E2), and set a green fill. Every lowest bid highlights itself as you enter new numbers.=SUM(B2:B20) per bidder column shows total bid price — useful since the lowest bidder line-by-line isn't always the lowest overall.This turns bid leveling from a multi-hour manual comparison into something that updates itself the moment a late bid comes in.
Back to all tutorials →