Hi, depends on what format you trying to go from and to.
example - Convert an integer 'IntField' into a 6 character varchar padded with '0':
Select Right('000000' + Convert(Varchar, IntField), 6)
if IntField = 897
this returns 000897
Note: this assumes the value of IntField is maximum of 999999!
Hope that helps,
Nathan