Show Number in Custom Format
Stark
Syria
Hello have a good day ,,,
how I can add Zero to the left of my number if it's less than 10 ?
01
02
.
.
.
08
09
10
11
12
thank you advance
P.S:
of course I can done it by C# , but it will converted to string ...
how I can add Zero to the left of my number if it's less than 10 ?
01
02
.
.
.
08
09
10
11
12
thank you advance
P.S:
of course I can done it by C# , but it will converted to string ...
Comments
Use "Custom" format type with the following format string: #00.00 (you may skip .00 part if you don't need decimals).