shyamvinjamuri
Board Regular
- Joined
- Aug 2, 2006
- Messages
- 175
split a name into first and last name based on upper and lower case.
eg. JohnDoe to read as John Doe.
Please help
Thanks
eg. JohnDoe to read as John Doe.
Please help
Thanks
I fiddled around with it some, and there is probably a shorter way to do this, but the below options work.
Excel 2007
Excel Workbook
A B C 1 JohnDoe John Doe 2 MikeWilford Mike Wilford 3 JaniceDoe Janice Doe 4 MichaelWilford Michael Wilford 5 JohnDoe John Doe 6 MikeWilford Mike Wilford 7 JaniceDoe Janice Doe 8 MichaelWilford Michael Wilford Sheet2Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}. Note: Do not try and enter these manually yourself#VALUE!
One different way for your C1 cell would be the simple non-array formula:
=SUBSTITUTE(A1,B1,"",1)