Good day! Can you please tell me if there is a function that records integers in the format ..., 00, and at the same time in a numeric format, not a string one? (i.e. each number, integer or fractional, must have 2 digits after the decimal point)

    1 answer 1

    FormatFloat

    In your case, the format string will be '#,00' .

    • Thank you, Nofate! - leklerk