Remove COMMA(')

ashrafcbzashrafcbz Member Posts: 10
Hi,

How can i remove COMMA(,) from a decimal field in reports.
or how can i convert amount field into indian amount formate.

Thanks In advance

Comments

  • krikikriki Member, Moderator Posts: 9,110
    [Topic moved from 'NAV 2009' forum to 'NAV/Navision' forum]

    Check the format-property on the field in the report.
    With that you can select how many decimals you want and how the format must be.

    Curiosity : what is the Indian format?
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • ashrafcbzashrafcbz Member Posts: 10
    hi,
    thanks for reply.

    eg::indian 1,00,000.00
    in navision it shows 100,000.00
  • ashrafcbzashrafcbz Member Posts: 10
    kriki wrote:
    [Topic moved from 'NAV 2009' forum to 'NAV/Navision' forum]

    Check the format-property on the field in the report.
    With that you can select how many decimals you want and how the format must be.

    Curiosity : what is the Indian format?


    for removing COMMA how can i set the formate property.
  • matttraxmatttrax Member Posts: 2,309
    Seems like a strange format. Still, look into the FORMAT function and property. If you cannot find the options to create the format you want you will have to build your own function. I can't imagine the Indian number formatting wouldn't be there, though.
  • hawkeyehawkeye Member Posts: 51
    I would use the DELCHR function. Look in help how to use it. It can delete all your commas
  • HanenHanen Member Posts: 281
    NewAmount:= DELCHR(Amount,'=',',');
    Regards

    Hanen TALBI
  • MGM08MGM08 Member Posts: 41
    viewtopic.php?f=23&t=47012

    Hope this helps
  • vaprogvaprog Member Posts: 1,139
    NAV standard format uses Windows regional settings. You might want to take a look on those.
Sign In or Register to comment.