Re: Insert space 10 chars from end of row within indiv cells containing many rows
Hi Jaffey,
Keeping all the rows in the same cell can make your life more complicated ...
Should you split in individual rows ... you could test following formula :
=LEFT(A1,LEN(A1)-12)&" Ph: "&RIGHT(A1,12)
HTH