How do I remove the text between the second set of parenthesis in a cell?
for example: Tinley Park North (IL) FSU (Tinley Park, IL).
Input: Tinley Park North (IL) FSU (Tinley Park, IL)
Desired Output: Tinley Park North (IL) FSU
I need a formula that can return the desired output but if false then returns the original value of the cell.
Tags:
Answers
-
Try something like this:
=IF(FIND("(", [Column Name]@row, FIND("(", [Column Name]@row) + 1) > 0, LEFT([Column Name]@row, FIND("(", [Column Name]@row, FIND("(", [Column Name]@row) + 1) - 1), [Column Name]@row)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67K Get Help
- 442 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 79 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!