There is not much info in your question, so I cant' be too specific. It
appears you want to pad you number with leading zeros so that the resulting
string is 9 characters long.
Here is a simple formula to do that:
x = 8955
String(9-Len(x),"0") & x
The result is 000008955