Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Column Id has values like 7,8,9 etc. I want it to be displayed as 007,008,009. Please show me how to do it.
Thanks.
In your Number format, click Number and put 000 in the Format Pattern.
in tab number
Format Pattern 000
For column Id you can write this way also
=Num(Id,'000')
in script, in chart, but in table box???
For table box need to add a field in the load script like
Load
Id,
Num(Id,'000') as NumId
..
..
From Location;