How do I right justify an exported field in access 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to right justify a couple of fields in my record when I export it to a
fixed length text file. I hope there is an easy answer!
Thanks!

-Jason
 
Use calculated fields in a query. Examples:

Text: Right(Space(30) & [TextField], 30)
Number: Format([NumberField], "00000000.00")

On Thu, 26 Jan 2006 16:31:02 -0800, "Jason Bennett" <Jason
 
Back
Top