Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=IF(B2="","Enter a delimiter",IFERROR(MID(A2,FIND(B2,A2)+LEN(B2),LEN(A2)),"Delimiter not found"))Computed by a real spreadsheet engine on the sample data below.
| Text | Delimiter |
| invoice__2026__0916 | __ |
=IF(B2="","Enter a delimiter",IFERROR(MID(A2,FIND(B2,A2)+LEN(B2),LEN(A2)),"Delimiter not found"))→2026__0916
Both expressions are checked against an independently calculated expected result in HyperFormula. This is a sample execution check, not native Excel or Google Sheets certification.
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.
Yes. LEN(B2) skips all characters in the delimiter.
It distinguishes an unmatched input from a legitimate empty suffix. Investigate other input errors rather than blindly treating every message as valid data.
Split a full name or any delimited text into separate columns. Google Sheets uses SPLIT; Excel uses TEXTSPLIT — here is each.
How-toClean leading, trailing, and double spaces with TRIM — the usual fix for lookups that fail on values that look identical.
How-toTurn numbers stored as text into real numbers with VALUE or by multiplying by 1 — the fix for sums that ignore values.
How-toPull everything after the @ from an email using FIND and MID. Works the same in Excel and Google Sheets.
How-toGet the first name from a full name with LEFT and FIND, splitting on the first space. Works in Excel and Google Sheets.
How-toPad numbers to a fixed width with leading zeros using TEXT, or a custom number format. Works in Excel and Google Sheets.
Reviewed 2026-09-16
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: