Coachmannyz8
New Member
- Joined
- Feb 28, 2018
- Messages
- 9
Good day,
I'm trying to use a formula to change the name and bring in the correct format into the appropriate cell, but I can't seem to find the right combination?
Example:
Data in cell B1 = Doe, John (John D. Doe)
my formula gives me = John Doe (John D. Doe) "=MID(G25&" "&G25,FIND(" ",G25)+0,LEN(G25))" or
Doe, John (John D. Doe) =TRIM(IF(ISERROR(OR(FIND("(",C3),FIND(")",C3))),C3,LEFT(C3,FIND("(",C3)-1)&MID(C3&" "&C3,FIND(" ",C3)+0,LEN(C3)))) or
Doe, John =SUBSTITUTE(C4,LEFT(MID(C4,FIND("(",C4),255),FIND(")",MID(C4,FIND("(",C4)+1,
My goal is to capture only = John Doe
Thanks in advance
I'm trying to use a formula to change the name and bring in the correct format into the appropriate cell, but I can't seem to find the right combination?
Example:
Data in cell B1 = Doe, John (John D. Doe)
my formula gives me = John Doe (John D. Doe) "=MID(G25&" "&G25,FIND(" ",G25)+0,LEN(G25))" or
Doe, John (John D. Doe) =TRIM(IF(ISERROR(OR(FIND("(",C3),FIND(")",C3))),C3,LEFT(C3,FIND("(",C3)-1)&MID(C3&" "&C3,FIND(" ",C3)+0,LEN(C3)))) or
Doe, John =SUBSTITUTE(C4,LEFT(MID(C4,FIND("(",C4),255),FIND(")",MID(C4,FIND("(",C4)+1,
My goal is to capture only = John Doe
Thanks in advance