Trying to get data using the RIGHT formula
I have the following data where I am trying to parse the (ISPHUBS-6AAA) from the string below.
Assets 1 = ORRR39-ORMOOO-BEACH (ISPHUBS-6AAA)
I use the RIGHT formula ...
=RIGHT([Assets 1]@row, FIND("(", [Assets 1]@row))
But I get the following string returned
Result = -BEACH (ISPHUBS-6AAA)
How do I get just the (ISPHUBS-6AAA) returned?
Thank you!
Best Answers
-
I figured it out!
=RIGHT([Assets 1]@row, FIND(")", [Assets 1]@row) - FIND("(", [Assets 1]@row) + 2)
This can be closed.
-
That works... the more traditional way is to subtract the location of the character you are searching for from the total length and add a digit back.
=RIGHT([Assets 1]@row, LEN([Assets 1]@row) - FIND("(", [Assets 1]@row) +1)
Answers
-
I figured it out!
=RIGHT([Assets 1]@row, FIND(")", [Assets 1]@row) - FIND("(", [Assets 1]@row) + 2)
This can be closed.
-
That works... the more traditional way is to subtract the location of the character you are searching for from the total length and add a digit back.
=RIGHT([Assets 1]@row, LEN([Assets 1]@row) - FIND("(", [Assets 1]@row) +1)
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!