I need to separate out digits between characters (_) into a different column. Can this be done?
Hi there …
I need to separate digits from between characters (_) into a separate column.
100936_BLK_IE_JUL_20240718231356_24_HI_REGULAR_4.ps
100936_BLK_IE_JUL_240718231626_6_HI_REGULAR_6.ps
I need returned 24 and 6 from the strings above. Since there are multiple _ I'm not sure how to tell the formula to pull the digits between the 5th and 6th _. Any help is greatly appreciated.
Thank you
Best Answer
-
=VALUE(SUBSTITUTE(MID([File Name]@row, FIND("|", SUBSTITUTE([File Name]@row, "_", "|", 5)) + 1, 2), "_", ""))
Working from the middle of the formula outward:
SUBSTITUTE = replaces the fifth occurrence of an underscore _ with a pipe | —basically, load a NEW character that's wildly unlikely to be repeated elsewhere in the string. (If this character is part of your naming convention, change the character in the entire formula
FIND = find that pipe | (or whatever your character would be)
MID = find return the two characters following the pipe | or whatever
SUBSTITUTE = if there's an underscore in the result (like there would be with 6_), get rid of it
VALUE = convert it to a number format (for calculations elsewhere)
I assumed you are only trying to pull two characters; if you are pulling a different number of characters you'll need to make adjustments.Good luck!
If this answer resolves your question, please help the Community by marking it as an accepted answer. I'd also be grateful for your response - "Insightful"or "Awesome" reactions are much appreciated. Thanks!
Answers
-
=VALUE(SUBSTITUTE(MID([File Name]@row, FIND("|", SUBSTITUTE([File Name]@row, "_", "|", 5)) + 1, 2), "_", ""))
Working from the middle of the formula outward:
SUBSTITUTE = replaces the fifth occurrence of an underscore _ with a pipe | —basically, load a NEW character that's wildly unlikely to be repeated elsewhere in the string. (If this character is part of your naming convention, change the character in the entire formula
FIND = find that pipe | (or whatever your character would be)
MID = find return the two characters following the pipe | or whatever
SUBSTITUTE = if there's an underscore in the result (like there would be with 6_), get rid of it
VALUE = convert it to a number format (for calculations elsewhere)
I assumed you are only trying to pull two characters; if you are pulling a different number of characters you'll need to make adjustments.Good luck!
If this answer resolves your question, please help the Community by marking it as an accepted answer. I'd also be grateful for your response - "Insightful"or "Awesome" reactions are much appreciated. Thanks!
-
Thank you Kerry! I will try this and post if I can get it to work.
-
Unfortunately, I could not get this to work. Any other suggestions?
-
I got it to work. Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!