Memo field cuts text

  • Thread starter Thread starter ant1983
  • Start date Start date
A

ant1983

Hi,

I have a report running of a straight-forward query. I have a field called
memOutcomes which is a Memo field.

The text in that field seems to cut off in my report and it seems at the
same amoutn of characters in each line - what could cause this?
 
ant1983 said:
I have a report running of a straight-forward query. I have a field called
memOutcomes which is a Memo field.

The text in that field seems to cut off in my report and it seems at the
same amoutn of characters in each line - what could cause this?


Lots of things will truncate memo fields to 255 characters.

Setting the text box's Format property to anything

Using anything in the report's record source query that
needs to compare the memo field. For example:
DISTINCT
GROUP BY
ORDER BY
etc
 
Back
Top