Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Truncated Expresssion

Status
Not open for further replies.

vicktown

Technical User
Jul 13, 2004
27
0
0
CA
I am calling values from a memo field type using a query expression. The memo is being truncated. How do i stop this?

This is my expression:

Expr3: IIf(IsNull([tblParagraph]![TEXT]),"The text for this paragraph has not yet been entered into the databse",[tblParagraph]![TEXT])
 
Hi

How about

Expr3: Nz([tblParagraph]![TEXT],"The text for this paragraph has not yet been entered into the databse")

Regards

Ken Reay
Freelance Solutions Developer
Boldon Information Systems Ltd
Website needs upgrading, but for now - UK
 
It causes the same problem.

tblParagrpah.TEXT is still being truncated.
Is it even possible to call a Memo from an expression and have it stay as a memo style field?
 
The memo is being truncated

Memos are not regular fields on a table - they are an object where Access stores the pointer to the memo field. Only the first 255 characters (like a text field) are searchable.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top