Thanks Jason, Not sure if this will work for me, because I am using Crystal for Peachtree. I got a tip from a friend on LinkedIn and it involves building a variable. It worked for me. Thanks for your response. Dave
whileprintingrecords;
local stringvar myText := {table.field};
myText := REPLACE(myText,",","");
myText := REPLACE(myText,".","");
myText := REPLACE(myText,"'",""); // I always forget the exact string here, it may be four " or try '"' (double single double)
myText := REPLACE(myText,""",""); // I always forget the exact string here, it may be four " or try '"' (single double single)
myText := REPLACE(myText,"/","");
myText := REPLACE(myText,"?","");
myText