does excel truncate at 255?

  • Thread starter Thread starter Danny
  • Start date Start date
D

Danny

I have an access database that wil lexport fields larger than 255 to a text
file. THese are memo fields.

IF I import into excel 2002, will the field get truncated?

Thanks
 
In Excel, if you import using MSQuery, the memo fields should import the
text beyond 255 characters.

In Access, use the TransferSpreadsheet method to send the data, and
specify one of the later Excel versions. You can do this by creating a
macro, or writing some code, e.g.:

'======================
Sub SendTableToExcel()
DoCmd.TransferSpreadsheet acExport, _
acSpreadsheetTypeExcel9, "tblCustomers", _
"c:\Data\MyExcelFile.xls", True
End Sub
'===========================

Then, add a button on a form, to run the macro or the code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top