I have a list of names in alphabetical order. Each name has a cell with a number. I need the fist 3 letters of their name with the relevant number as their reference.
How do I do that?
I have a list of names in alphabetical order. Each name has a cell with a number. I need the fist 3 letters of their name with the relevant number as their reference.
How do I do that?
Do you mean something like =LEFT(A2;3)&TRIM(B2)
or something like =LEFT(A2;3)&ROW()
? A sheet with sample data would be much clearer
Thanks your example exactly what I wanted.