BeginnerText Functions
Split a full name with LEFT and FIND
Pull the first name out of a single full-name column.
LEFT · FIND
7 min15 points
Warehouse barcodes bundle the SKU and the lot number into one string, and the SKU part is not always the same length. Quality control needs the five-digit lot on its own to trace a recall, and counting characters will not survive the second scan.
| Row number | A | B | C | D | E |
|---|---|---|---|---|---|
| 1 | Barcode | Lot number | |||
| 2 | HW-4820/LOT-77341-A | ||||
| 3 | PL-1175/LOT-80126-B | ||||
| 4 | EL-90431/LOT-64509-A | ||||
| 5 | GR-226/LOT-71880-C | ||||
| 6 |
Extract characters from the middle of a text value.
MID
Locate a keyword inside a longer description without worrying about capitals.
SEARCH
Pull the first name out of a single full-name column.
LEFT · FIND