Formula Help
Using the below formula to pull serial numbers from multiple cells on one sheet, into one cell on another sheet.
=JOIN(COLLECT({Fleet Equipment SN Serial #}, {Fleet Equipment SN Ship Code}, Ship@row, {Fleet Equipment SN Device}, "X-Ray"), ",")
What returns is: (12345, 23456, 34567)
What I really want is: (12345) (23456) (34567) (all separate values) but in the same cell.
Is there a way to have the serial numbers as separate values, instead of one value with a delimiter? *I already have the column formatted as dropdown and "allow multiple values" turned on.
Best Answer
-
Hey @bborenstein
Yes!
Try using CHAR(10), a line break, as the delimiter instead of ","
=JOIN(COLLECT({Fleet Equipment SN Serial #}, {Fleet Equipment SN Ship Code}, Ship@row, {Fleet Equipment SN Device}, "X-Ray"), CHAR(10))
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Answers
-
Hey @bborenstein
Yes!
Try using CHAR(10), a line break, as the delimiter instead of ","
=JOIN(COLLECT({Fleet Equipment SN Serial #}, {Fleet Equipment SN Ship Code}, Ship@row, {Fleet Equipment SN Device}, "X-Ray"), CHAR(10))
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thanks so much! It worked! @Genevieve P.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!