In the built-in functions, format section, we have the functions FormatCurrency and FormatDecimal but there is no FormatInt.
If I have a large int and want it to show with a group separator I need to use the FormatDecimal. But this function require the inputs: decimal digits and decimal separator, and the only thing I need is the group separator.
My suggestion is to have a function for the integer type like:
FormatInt (value, group_Separator)
If I have a large int and want it to show with a group separator I need to use the FormatDecimal. But this function require the inputs: decimal digits and decimal separator, and the only thing I need is the group separator.
My suggestion is to have a function for the integer type like:
FormatInt (value, group_Separator)