Flag a Row When Any One Condition Is True
The ops team reviews an order when it meets either trigger: the customer chose Rush shipping, or the order value is over $500. One matching condition is enough — you need a formula that thinks the same way.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
OR takes any number of tests and returns TRUE the moment one of them passes — Rush shipping, a value over 500, or both. IF then converts that into Escalate or Normal. Only when every test fails does the row stay Normal. Note the text comparison isn't case-sensitive, so "rush" and "RUSH" in column A both match. And B2>500 is strict: an order of exactly 500 stays Normal, because 500 is not greater than 500 — use >= if the threshold itself should escalate.
When to use it
Use it wherever one match is enough: escalate tickets that are urgent or aging, review expenses that are large or missing a receipt, flag shipments that are late or incomplete.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveDownload the proof sheet (.xlsx)Last reviewed 2026-07-09