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
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 494 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!