Jul 19, 2023 09:48 AM - edited Jul 19, 2023 02:06 PM
I am hoping there is a formula to achieve this... but not sure. I want to automatically generate the formatting that is in the "IDEAL" field on the right, that way this does not have to be done manually.
Any help/thoughts would be appreciated!
Solved! Go to Solution.
Jul 19, 2023 04:50 PM
In this case, Add a Formula field to the "Speaker" table and generate a string in that format.
Reference the field you added in the Rollup field to that table (Session?).
Rollup Field Formula : ARRAYJOIN({field name},"\n")
How about this?
Jul 19, 2023 04:50 PM
In this case, Add a Formula field to the "Speaker" table and generate a string in that format.
Reference the field you added in the Rollup field to that table (Session?).
Rollup Field Formula : ARRAYJOIN({field name},"\n")
How about this?
Jul 19, 2023 05:56 PM
Thank you!!! So much easier than I made it out to be 😓
Worked great using ARRAYJOIN((values),"\n")