I have data stored in Access in memo fields that will be presented in Excel tables. When I export the query data, the resulting table data stops at 255 characters. It’s too much trouble to create a report in Access.
Hi,
Excel allows 32,767 characters total in each cell. Only 1,024 display in the cell itself, but all 32,767 display in the formula bar. I may not understand the question....
Hi,
try to export table/qurey to higher version of excel using macro:
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "Tabelel5", "C:\T5.xls", True
this works for me.
BTW, excel is inconsistent with the cell limit. You can have more than 255 characters in one cell. They will be copied within the same instance of excel, when you try to copy between two instances, copied data is truncated.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.