How do you specify the fixed indentation alignment for text output in a file.
ie my text file looks like:
HELLO | 534
BYE | 4
HOME | 635
GIRAFFEERAA | 11
I need it to look like:
HELLO--------|-534
BYE----------|-4
HOME--------|-635
GIRAFFEERAA-|-11
or
HELLO--------|-534
BYE----------|---4
HOME--------|-635
GIRAFFEERAA-|--11
where '-' represents a space for fixed alignment. Kind of like vbTab but a fixed length of my choosing. I did this before along time ago but forget how.
ie my text file looks like:
HELLO | 534
BYE | 4
HOME | 635
GIRAFFEERAA | 11
I need it to look like:
HELLO--------|-534
BYE----------|-4
HOME--------|-635
GIRAFFEERAA-|-11
or
HELLO--------|-534
BYE----------|---4
HOME--------|-635
GIRAFFEERAA-|--11
where '-' represents a space for fixed alignment. Kind of like vbTab but a fixed length of my choosing. I did this before along time ago but forget how.
Last edited: