Formula Help

Options
bborenstein
bborenstein ✭✭
edited 02/23/23 in Formulas and Functions

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

  • Genevieve P.
    Genevieve P. Employee Admin
    Answer ✓
    Options

    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

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!