With totext(), you can add two arguments, one for the number of decimals, and one to remove the dividing comma, by using:
totext({table.number},0,"")
To pad a number, you could also use the following:
totext({Table.number},"0000000.00")
//adding the number of places you want to the left or right of the
//decimal by adding additional zeros
-LB