I have an amount
field which is a decimal in the database.
I need to always display this amount with 10 numbers on the left of the decimal and two after.
Example:
Amount = 245.00
which should display as 0000000245.00
Additionally, the amount could be over 1,000 or 10,000 which should display as:
0000001245.00
and 0000011245.00
How can I format the amount to always have the appropriate number of zeros on the left side of the decimal with a variable amount size?