Decimal Fields

Is there a way to eliminate printing the comma’s on a decimal field in a report? EX. 123,456 to read 123456 on the print out. Thanks

In SourceExpresion property: DELCHR( FORMAT( FIELDNAME,’<Precision,3:3><Standard format,0>’), ‘.,’));

Check out the help for the Format property. Two of the attributes you can use when building a format for decimal variables are and . The former has no commas separating the thousands while the later does.