M
M Skabialka
In Access 2000 I created a new report which has to show the contents of a
memo field called [Notes].
The query shows all of the data, which can be 300 or 400 characters
sometimes, but the report cuts it off at 150 characters, the width of the
page.
So I tried in the query to break up [Notes] into
Notes1: mid([Notes,1,255)
Notes2: mid([Notes,256,510)
I also tried:
Notes1: mid([Notes,1,150)
Notes2: mid([Notes,151,300)
and in the report the control source is
NotesTxt
=[Notes1] & [Notes2]
but it still gets cut off at 150 characters. The field is set to grow or
shrink as needed, but even if I make the field very large the words still
get chopped off.
What am I missing here?
Thanks
Mich
memo field called [Notes].
The query shows all of the data, which can be 300 or 400 characters
sometimes, but the report cuts it off at 150 characters, the width of the
page.
So I tried in the query to break up [Notes] into
Notes1: mid([Notes,1,255)
Notes2: mid([Notes,256,510)
I also tried:
Notes1: mid([Notes,1,150)
Notes2: mid([Notes,151,300)
and in the report the control source is
NotesTxt
=[Notes1] & [Notes2]
but it still gets cut off at 150 characters. The field is set to grow or
shrink as needed, but even if I make the field very large the words still
get chopped off.
What am I missing here?
Thanks
Mich