Here is what I found at IB's site:
HOLD/SAVE FORMAT LOTUS files on MF FOCUS releases 68 and earlier are limited to a 240 byte record. With release 7.0 and higher, the LRECL was increased to 512 bytes. One option is to use ON TABLE HOLD FORMAT EXCEL or HOLD FORMAT EXL2K if the ultimate desire is to import into an EXCEL compatible spreadsheet. If it must be FORMAT LOTUS, we can manually generate a comma-delimited file that can be imported to LOTUS. In a comma-delimited file, alphanumeric data is enclosed in double quotes and the data fields are separated by a comma. By using DEFINE to generate a field that contains a comma and another that contains a double quote, we can manually create a comma-delimited file that can be any length. The following is an example of this technique using the CAR file:
DEFINE FILE CAR
COMMA/A1 WITH COUNTRY=',';
QUOTE/A1 WITH COUNTRY='"';
END
TABLE FILE CAR
PRINT QUOTE COUNTRY QUOTE COMMA QUOTE CAR QUOTE COMMA
RETAIL_COST COMMA DEALER_COST
ON TABLE SAVE AS SAVCAR
END
Does it address your situation???