Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formatting, Getting rid of Commas

Status
Not open for further replies.

klaidlaw

Programmer
May 28, 2008
140
US
I am formatting my report so that the order line, release number and order number can all go together like this 11023/3/45. My formula looks like this:

totext({JobProd.OrderNum},0) + " / " + totext({JobProd.OrderLine},0) + " / " + totext({JobProd.OrderRelNum},0)

but I am getting this as a result:
11,023/3/45 and I would like to get rid or the comma if anyone could help I would really appreciate it. Thank you!!
 
Try

totext({JobProd.OrderNum},0,"") + " / " + totext({JobProd.OrderLine},0) + " / " + totext({JobProd.OrderRelNum},0)

Ian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top