Hey,
I’ve got a ‘Full name’ cell, I want to separate the full name to First name + one letter from the family name.
for example:
Mark Zuckerberg -> MarkZ (with no space)
How can I do that?
I’ve try something like this, but I can’t get ride from the ‘-’
![Capture Capture](/t5/image/serverpage/image-id/22647i544F202E5775CC11/image-size/large?v=v2&px=999)
I’m using:
Blockquote
SUBSTITUTE({Full name eng}, " ", “-”)
Blockquote
LEFT(TRIM, SEARCH("-", TRIM)+1)
Thanks!