Hello! Reaching out for help. I have the following set of data:
Name
Smith,John
Lopez,Mark
I need to change into:
J. Smith
M. Lopez
Suggestions? Thank you
Solved! Go to Solution.
This formula should get you what you need assuming that ALL your records are formatted exactly the same as your example.
REGEX_REPLACE([Name], '^(.+?),(\w).*$', '$2.$1')
Thank you! This was what I needed
User | Count |
---|---|
19 | |
15 | |
13 | |
9 | |
8 |