G Guest Jan 20, 2006 #1 Can anyone help? I need to get more characters than 255 into some fields in a table
A Allen Browne Jan 20, 2006 #2 Open the table in design view. Select the field. Change it to a Memo type instead of a Text type.
G Guest Jan 20, 2006 #3 Just remember that you can not sort on a memo field in older versions of Access. A work-around is to pull 255 charaters and sort like this -- ORDER BY Left([YourMemo], 255)
Just remember that you can not sort on a memo field in older versions of Access. A work-around is to pull 255 charaters and sort like this -- ORDER BY Left([YourMemo], 255)
G Guest Jan 21, 2006 #4 Thanks Allen. It worked a treat Daniel Allen Browne said: Open the table in design view. Select the field. Change it to a Memo type instead of a Text type. Click to expand...
Thanks Allen. It worked a treat Daniel Allen Browne said: Open the table in design view. Select the field. Change it to a Memo type instead of a Text type. Click to expand...