How to format decimal

lokesh.mathur.24lokesh.mathur.24 Member Posts: 7
Hi all,

As we all know that Navision is comma seperation in Values more than thousand for all decimal fields,

Can any one give me the format expression to format this decimal field into non comma seperation Value,

Thanks

Comments

  • ara3nara3n Member Posts: 9,256
    th number formating depends on your regional setting. unless you to convert it to a
    string.

    Mystr := delchr(Format(MyInt),'=',',');
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • AlbertvhAlbertvh Member Posts: 516
    or you could use the FORMAT command
    MESSAGE('%1',FORMAT(10000.1,0,'<Precision,2:2><Standard Format,2>'));
    


    Albert
Sign In or Register to comment.