Frank Kabel said:
the limit should be 255

Not much chance to do anything against it AFAIK
(restriction of the database driver)
How do you know? The OP didn't say how they were transferring the
data, which driver they are using, which version of Jet, which version
of Excel, etc.
Using the MS OLEDB JET 4.0 driver and a SELECT..INTO query to create
an Excel8 workbook, the values aren't truncated. To demo:
CREATE TABLE FranksTable
(MyMemoColumn MEMO)
;
INSERT INTO FranksTable
(MyMemoColumn)
VALUES ('123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890')
;
SELECT
MyMemoColumn
INTO
[Excel 8.0;HDR=Yes;Database=C:\Frank.xls;].Sheet1
FROM
FranksTable
;
SELECT
LEN(MyMemoColumn) AS length_exported
FROM
[Excel 8.0;HDR=Yes;Database=C:\Frank.xls;].Sheet1
;
I get length_exported = 300.
Jamie.
--