function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mateo AlcauterMateo Alcauter 

How to remove commas from a text field

Is there a way to remove commas from a text field using a custom field or a process?
For example if a field has the value "this is a test, okay." I want a new field to duplicate that without the comma. New value would be
"this is a test okay."
Best Answer chosen by Mateo Alcauter
Raj VakatiRaj Vakati
SUBSTITUTE("this is a test, okay.", ",","")
 

All Answers

Raj VakatiRaj Vakati
SUBSTITUTE("this is a test, okay.", ",","")
 
This was selected as the best answer
Raj VakatiRaj Vakati
Its formula  field  

SUBSTITUTE("this is a test, okay.", ",","")