Formula - Line Breaks
Comments
-
Multi-select values inherently have a CHAR(10) applied to each of them, which is how that column type identifies when one value ends and when another, separate value starts.
You can use SUBSTITUTE again to replace the CHAR(10) in the multi-select with "" (blank) so that it will appear on the same row. Ex:
"Finish Type: " + SUBSTITUTE([Finish Type]@row, CHAR(10), "") + SUBSTITUTE(Helper#, "-", "")... etc
Let me know if this makes sense and works for you.
Cheers,
Genevieve
Join us at Smartsheet ENGAGE 2024 🎉
October 8 - 10, Seattle, WA | Register now -
I noticed this thread addressing similar issue: https://community.smartsheet.com/discussion/comment/341478
Using the CHAR(10) I bypassed helper column and created line breaks for the multiple row cells combined. No JOIN formula needed either.
Example:
="insert label here: " + [Cell1]@row + CHAR(10) + "insert label: " + [Cell2]@row + CHAR(10) + "insert label: " + [Cell3]@row
-
UNICHAR(10) works (Line feed character).
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!