Skip to main content

Remove Hard Returns

  • December 10, 2020
  • 1 reply
  • 26 views

Forum|alt.badge.img+4

How can I create a formula field that references an existing text field, but removes hard returns between lines of type?

1 reply

Justin_Barrett
Forum|alt.badge.img+21

To remove hard returns, you can use the SUBSTITUTE() function to remove the newline symbol: \n

SUBSTITUTE({Field Name}, "\n", "")

However, if you just remove all newlines, you might want to replace it with something else depending on how you plan on using the modified text.