• Hi,

    I want to trim the value of decimal point to 2.

    For example

    1245.658797

    123597.599945

    798754.589785

    787561.124657

    I want this to be displayed as

    1245.65

    123597.59

    798754.58

    787561.12

    If i try to use decimal(15,2) it will round off the value.

    If i convert to type money then also the values get round off

    The value type is real in the database

    Please help...