Skip to main content
Solved

Formula to remove a space after a comma in a string

  • October 6, 2021
  • 2 replies
  • 41 views

Forum|alt.badge.img+3

This is probably really simple - can someone please help with a formula…

What I am trying to achieve: remove space after comma in a string

Example of existing string: Kim Jones, Ted Jones, Fred Jones, Sam Jones

What I am after is a formula to convert the above to: Kim Jones,Ted Jones,Fred Jones,Sam Jones

I have up to 11 names in my string - any advice is greatly appreciated.

Best answer by Justin_Barrett

This should do it:

SUBSTITUTE({Field name or string}, ", ", ",")

2 replies

Justin_Barrett
Forum|alt.badge.img+21

This should do it:

SUBSTITUTE({Field name or string}, ", ", ",")

Forum|alt.badge.img+3
  • Author
  • Inspiring
  • October 6, 2021

This should do it:

SUBSTITUTE({Field name or string}, ", ", ",")

Awesome - perfect thank you!
:white_check_mark: