Export to Text added leading space
Turntwo
Folsom, CA
I'm trying to create a text file with a specific format (basically a record type and * separated fields). I created the format within the report fields itself (not exporting as csv with a * delimiter) to have a little more control over the output, and I am trying to export it using the Text/Matrix function. Works well, except it adds an extra space before each line. Since this output needs to be sent to another company for processing, I need the output to not have the extra space. Is there anyway to prevent the extra space from exporting?
I tried using Frames=None, which does remove the space, but when I tried to save as a text file it blew up with a NullReferenceException. So that option doesn't look like it is going to work.
I tried using Frames=None, which does remove the space, but when I tried to save as a text file it blew up with a NullReferenceException. So that option doesn't look like it is going to work.
Comments
Sorry there is no way to remove extra spaces. You can however export the file, then process it using StreamReader/StreamWriter in your code.
Thanks,
Jason