I am trying to create a formula to take the first 4 letters from the Salesman Name column and add "-001", etc. to the end of the first 4 letters to create an Incident Number. My coworker created this formula and it's almost working, but isn't always taking the first 4 letters from the last name (see line 3 (incorrect) vs line 4 (correct). Any ideas why this is not working all the time?
Formula being used: =UPPER(LEFT(RIGHT([Salesman Name]@row, FIND(" ", [Salesman Name]@row)), 4)) + "-" + [Auto Number]@row