Extract LowerCase initials from name in single column
Need to get correct formula/function to execute the following:
PREFIX: PKS-
Name Column: JOHN DOE
ID Column: 00123456
Desired Formula Output: PKS-jd-00123456
Here is what I have currently:
="PKS-" + LOWER(Name204) + "-" + ID204 and the output is: PKS-john doe-00123456
OR
="PKS-" + LOWER(LEFT(Name204) + "-" + ID204) and the output is PKS-j-00123456
Comments
-
Try using a FIND function within MID function to pull the letter after the space...
=LOWER(MID(Name204, FIND(" ", Name204) + 1, 1))
-
Yep. Do what Paul is suggesting and add that after the lower left with a + sign and you should get what you're looking for.
="PKS-" + LOWER(LEFT(Name@row) + LOWER(MID(Name@row, FIND(" ", Name@row) + 1, 1)) + "-" + ID@row)
Here is the whole formula in one. I also had to add the quotes around the ID204.
-
Scratch that last bit about the quotes. That was a mistake.
-
THANKS SO MUCH!!!
My formula is working like I need it to now.
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!