Forum Discussion
mesmrc
Dec 08, 2020Copper Contributor
Conditional Name-Copying Formula
I have a column of names that contains some cells that are just first name, and others that are first, last, and middle, all in one cell. I'd like to have an adjacent column copy just the first n...
- Dec 08, 2020
mesmrc Hi
Try below formula adjecant to main column:
=PROPER(IFERROR(IF(FIND(" ",A2,1)>0,LEFT(A2,FIND(" ",A2,1)-1),0),A2))
A sample file is also attached for your reference, hoipe it will help.
Please let me know if it works for you.
Thanks
Tauqeer
tauqeeracma
Dec 08, 2020Iron Contributor
mesmrc Hi
Try below formula adjecant to main column:
=PROPER(IFERROR(IF(FIND(" ",A2,1)>0,LEFT(A2,FIND(" ",A2,1)-1),0),A2))
A sample file is also attached for your reference, hoipe it will help.
Please let me know if it works for you.
Thanks
Tauqeer
- mesmrcDec 08, 2020Copper Contributor
tauqeeracma amazing thank you so much! Works perfectly :hundred_points:
- tauqeeracmaDec 08, 2020Iron Contributor
mesmrc you are welcome