Retrieving parts of a text fields
Hi there,
I have a project identifier column that includes a project code (111-AAA) and project name (client name). Ex: 123-ABC Disney Corp
I would like to separate the Project Code and Project Name into 2 Columns, which will result in me having 3 columns Project Identifier, Project Code and Project Name.
For the 'Project Code' split I used this formula successfully:
=IFERROR(LEFT([Project Identifier]@row, FIND(" ", [Project Identifier]@row) - 1), " ")
However, I am having more issues with retrieving the Project Name. I have tried:
=IFERROR(RIGHT([Project Identifier]@row, FIND([Project Code]@row, [Project Identifier]@row)), " ")
The thought is that I would like pull everything right of the project code (123-ABC) but I only get the result "p".
Any tips and tricks I would appreciate. Thank you.
Best Answer
-
Hello @Eyglo
Hope you are doing well. Try this in your Project Name column:
=IFERROR(RIGHT([Project Identifier]@row, LEN([Project Identifier]@row) - FIND(" ", [Project Identifier]@row)), [Project Identifier]@row)
Hope it helps.
Peggy
Answers
-
Hello @Eyglo
Hope you are doing well. Try this in your Project Name column:
=IFERROR(RIGHT([Project Identifier]@row, LEN([Project Identifier]@row) - FIND(" ", [Project Identifier]@row)), [Project Identifier]@row)
Hope it helps.
Peggy
-
This worked. Thank you so much Peggy.
-
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!