Row Delimiter in a formula?
Hi all,
I have a sheet that contains hierarchy, I needed to make a dynamic view and maintain the hierarchy, which I partially achieved with formula columns. Long story short, I have a parent cell (program) and children cells (parts). In dynamic view I want to have 'program' in the main view, which I achieved and 'parts' in the detail view, which I managed to do with the formula column below.
=JOIN(DESCENDANTS([Program]@row), " || ")
However, it shows as a blob of text and the delimiter is " || ". It is hard to read for users. I would like to have it delimited by row but cannot figure out for the life of me how to put it in the formula. Is it even possible? Or is there a workaround?
Thanks!
Answers
-
You can use CHAR(10) for line break, and make sure that the WRAP TEXT is enable.
=JOIN(DESCENDANTS([Program]@row), CHAR(10))
...
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!