1. Convert SKU codes to lowercase
| A001 |
| A002 |
| A003 |
| A004 |
=MAP(A2:A5, LAMBDA(s, LOWER(s)))Result: a001a002a003a004
The SKU column (A2:A5) contains four text strings. MAP feeds each string to the LAMBDA, which calls LOWER to produce a lowercase version. The function spills a four-row single-column array that mirrors the input shape.