Calc Formulae: Specifically, I want to use the first 3 letters in the cell to the right and add the number in the cell to the left

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

1 Like

Thanks your example exactly what I wanted.