Jul 04, 2021 12:37 PM
Hello! I have a long text field with information captured as rich text:
- Achievement 1
- Achievement 2
- Achievement 3
I need these Achievements converted to a comma separated text field. How do I get the above, converted to the below?:
Achievement 1, Achievement 2, Achievement 3
Appreciate any guidance!!!
Solved! Go to Solution.
Jul 04, 2021 02:07 PM
Try this:
SUBSTITUTE(
SUBSTITUTE(
TRIM({Field Name}),
"- ", ""
), "\n", ", "
)
Jul 04, 2021 02:07 PM
Try this:
SUBSTITUTE(
SUBSTITUTE(
TRIM({Field Name}),
"- ", ""
), "\n", ", "
)
Jul 05, 2021 11:18 AM
Perfect, thank you!!!