Sign in to join the conversation:
Does anybody know if this post from 3 years ago has been addressed?
https://community.smartsheet.com/discussion/new-line-alt-enter-formulas
I'm looking to concatenate cells with line breaks. Thanks!
Hi @Michael Halvey
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
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).
I have three columns. One with a date 7/1/2027 in date format. One with a number representing the number of months I wish to subtract from the date column. Third column is a date column with the following equation: =DATE(YEAR([Column4]@row) - INT((MONTH([Column4]@row) - VALUE(Factor1)) / 12), MOD(MONTH([Column4]@row) -…
Formula was flowing correctly, but some change seems to have partially broken the pull but I can't figure out what/how. "Project" column dropdown is linked to a Master sheet. Budget Owner column contains the below formula which should look for the cell value in the Project/Cost Center/IO column within the P+CC+IO column of…
I have a sheet that I was able to calculate minutes and seconds using this formula. =VALUE(LEFT(Time@row, FIND(":", Time@row) - 1)) + VALUE(RIGHT(Time@row, 2)) / 60 Now I’m working on a form that needs to include milliseconds. I tried using the above formula and adding milliseconds but my formula returns an #INVALID VALUE…