If you always need to add 15 spaces, you can simply concatenate that to the end of the field: MyField:Space(15) If the size of the field is variable, put some logic in the function: MyField:Space(15 - Len(MyField)) You can probably also do it with the FMT function, check the ...