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 information? 👀 | 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 information? 👀 | 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
- 67.6K Get Help
- 472 Global Discussions
- 200 Use Cases
- 513 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 81 Community Job Board
- 520 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!