Grab digits to the right of the "-"
I'm trying to separate the Area-Route column.
For Area I'm using =LEFT([Area-Route]@row, FIND("-", [Area-Route]@row) - 1) and this seems to work fine.
For the Route I'm using =RIGHT([Area-Route]@row, FIND("-", [Area-Route]@row) + 1) but this doesn't seem to work. You can see that their could be zero digits to the right of the "-" or several digits.
Any help would be appreciate! Thank you...
Best Answer
-
Hey @tgattsh
Try this
=RIGHT([Area-Route]@row, LEN([Area-Route]@row) - FIND("-", [Area-Route]@row))
The number of characters is determined from the difference between the length of the textstring and the hyphen.
Does this work for you?
Kelly
Answers
-
Hey @tgattsh
Try this
=RIGHT([Area-Route]@row, LEN([Area-Route]@row) - FIND("-", [Area-Route]@row))
The number of characters is determined from the difference between the length of the textstring and the hyphen.
Does this work for you?
Kelly
-
@Kelly Moore You're Awesome!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!