How to format decimal

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

  • ara3n
    ara3n Posts: 9,258
    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
  • Albertvh
    Albertvh Posts: 516
    or you could use the FORMAT command
    MESSAGE('%1',FORMAT(10000.1,0,'<Precision,2:2><Standard Format,2>'));
    


    Albert