Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=LEFT(A2,5)="Order"Computed by a real spreadsheet engine on the sample data below.
| Text | Starts with Order? |
| Order 1001 | |
| Invoice 2002 | |
| Order 1002 | |
| Return 500 | |
| Order 1003 |
=LEFT(A2,5)="Order"→TRUE
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.
Neither Excel nor Google Sheets has a built-in STARTSWITH, but the LEFT or COUNTIF wildcard approaches shown above are equally effective.
Use OR: =OR(LEFT(A2,3)="INV",LEFT(A2,3)="ORD") — or use SUMPRODUCT with an array of prefixes for a more compact formula.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: