BeginnerText Functions
Check code length with LEN
Use LEN to validate that product codes are the right length.
LEN
3 min10 points
Counts the characters in a text value, spaces included.
LEN(text)
Text Functions.
=LEN(A2)
Returns 9
Counts the characters in the product code, spaces included.
A length one higher than expected is usually an invisible trailing space — which is also why the lookup on that column is failing.
Knowing what a function does and being able to write it from memory are different skills. These close the gap.