Ken:
I respect you, and you may be correct, but I know what I experienced.
The first column of the query had a date format in the format property
which was a literal, "dd-mm-yy" for European dates.
The SQL is pasted below, but not the whole thing. What you see is
representative of the whole. I was magnifing my vexation when I said
that Left() causes the problem, but the offending column (f7) contained
IIF() and IsNull(). Before I removed them, it failed. After I took out
the entire logic of it and left only the field itself, the output worked
and dumped ALL characters, no matter what the length.
--
Danny J. Lesandrini
(e-mail address removed)
http://amazecreations.com/datafast
Ken Snell (MVP) said:
Your list is not correct.... you can use Left, Nz, etc. functions with
memo fields.
As I said, if you post the SQL statement of the query, we can help
identify what was causing your trunction problem in this particular
instance.
--
SELECT
IIf(IsNull([RevisionDate])," ",[RevisionDate]) AS f3
, IIf(IsNull([StatusStatus])," ",[StatusStatus]) AS f4
, IIf(IsNull([ReleaseOrderNumber])," ",[ReleaseOrderNumber]) AS f5
, IIf(IsNull([ApprovalDate])," ",[ApprovalDate]) AS f6
, IIf(IsNull([StatusHistoryAction])," ",[StatusHistoryAction]) AS f7
, IIf(IsNull([StatusEndUserCountry])," ",[StatusEndUserCountry]) AS f8
, IIf(IsNull([ProdInfoItemNumber])," ",[ProdInfoItemNumber]) AS f9
, IIf(IsNull([ProdInfoPartNumber])," ",[ProdInfoPartNumber]) AS f10
, IIf(IsNull([ProdInfoItemDescription])," ",[ProdInfoItemDescription]) AS
f11
, IIf(IsNull([ProdECCNCode])," ",[ProdECCNCode]) AS f12
, IIf(IsNull([BusinessDescription])," ",[BusinessDescription]) AS f33
, IIf(IsNull([UseApplication])," ",[UseApplication]) AS f34
, IIf(IsNull([MatchingAndScreeningComments]),"
",[MatchingAndScreeningComments]) AS f56
, IIf(IsNull([PreliminaryReviewComments]),"
",[PreliminaryReviewComments]) AS f57
, IIf(IsNull([FinalReviewComments])," ",[FinalReviewComments]) AS f58
FROM
tblWorkingMaster;