S
steveshoe
In my job I routinely need to save Excel spreadsheets in the 'space delimited text' format in order to upload their data to a mainframe for processing. I have to use this format because the mainframe is very picky about the data being lined up. For example, if a field starts in column 30 on the first record, it must start in column 30 in all the records
The problem I have with using the 'space delimited text' format (*.prn file) is that it is limited to a 256-byte record length. If I have a spreadsheet with rows longer than that then it cuts off the data beyond that length and puts it below the records containing the first 256 bytes. In essence this makes the file unusable on the mainframe
I have tried other '.txt' formats but they all shift data around based on how much of each column is actually used. Can you tell me if there is any way to get Excel to save '.prn' files so that one row equals one output record regardless of the 256-byte limit?
The problem I have with using the 'space delimited text' format (*.prn file) is that it is limited to a 256-byte record length. If I have a spreadsheet with rows longer than that then it cuts off the data beyond that length and puts it below the records containing the first 256 bytes. In essence this makes the file unusable on the mainframe
I have tried other '.txt' formats but they all shift data around based on how much of each column is actually used. Can you tell me if there is any way to get Excel to save '.prn' files so that one row equals one output record regardless of the 256-byte limit?