Create a Pass/Fail Status Column
You have a column of test scores or metrics and need a column beside it that plainly says Pass or Fail based on a cutoff, instead of making readers do the math in their heads.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
IF checks one condition and returns one of two results. Here it asks whether the score in B2 is at least 70: if yes, the cell shows Pass; otherwise it shows Fail. The >= means the cutoff itself passes — a score of exactly 70 is a Pass. Swap the 70 for any threshold, or point it at a cell like $E$1 that holds the cutoff so you can change it in one place. It works identically in Excel and Google Sheets, and it's the foundation nearly every status column is built on.
When to use it
Use this for quality checks, sales quotas, exam results, credit thresholds — any place a number needs to become a plain yes/no verdict people can scan, filter, and count.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08