ColumnName: issueamount (No Decimal Places)
Columnlength: 10
Data: 9999
How can I export the data of 9999 to a fixed length text (.txt) file with a leading zero infront like 0000009999?
left(IsNull(ltr im(rtrim( issueamount)),' ')+ ' ',10)
Thanks.
Columnlength: 10
Data: 9999
How can I export the data of 9999 to a fixed length text (.txt) file with a leading zero infront like 0000009999?
left(IsNull(ltr im(rtrim( issueamount)),' ')+ ' ',10)
Thanks.
Comment