Split Text to multiple Column Formula not working?
I tried to split the text in Course Release date to two column if there is more than two dates.
For Course release date original column, I used
=LEFT([Course Release Date]@row, FIND(" ", [Course Release Date]@row))
For Course release date if refreshed column, I used
=RIGHT([Course Release Date]@row, LEN([Course Release Date]@row) - FIND(" ", [Course Release Date]@row))
I am not sure why it is not working and left column showing blank and right column pulled the whole text?
Best Answers
-
It looks to me like you are using line breaks instead of spaces. Try replacing the space with CHAR(10)
FIND(CHAR(10), [Course Release Date]@row)
-
YEAH! That worked, thank you so much!
However, I want to original column to repeat the Course release date column when there is only one date, when there is more than one date I want the second date to be in the "If refreshed" column. I achieved that by using the formula below
FYI: I rename the Course release date column to Course Release Date - Helper
=LEFT([Course Release Date - Helper]@row, LEN([Course Release Date - Helper]@row) - FIND(CHAR(10), [Course Release Date - Helper]@row))
=IF([Course Release Date - Helper]@row <> [Course Release Date Original]@row, RIGHT([Course Release Date - Helper]@row, LEN([Course Release Date - Helper]@row) - FIND(CHAR(10), [Course Release Date - Helper]@row)), "")
Answers
-
It looks to me like you are using line breaks instead of spaces. Try replacing the space with CHAR(10)
FIND(CHAR(10), [Course Release Date]@row)
-
YEAH! That worked, thank you so much!
However, I want to original column to repeat the Course release date column when there is only one date, when there is more than one date I want the second date to be in the "If refreshed" column. I achieved that by using the formula below
FYI: I rename the Course release date column to Course Release Date - Helper
=LEFT([Course Release Date - Helper]@row, LEN([Course Release Date - Helper]@row) - FIND(CHAR(10), [Course Release Date - Helper]@row))
=IF([Course Release Date - Helper]@row <> [Course Release Date Original]@row, RIGHT([Course Release Date - Helper]@row, LEN([Course Release Date - Helper]@row) - FIND(CHAR(10), [Course Release Date - Helper]@row)), "")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!