How do I increase the field size to 400 in a database table?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone help? I need to get more characters than 255 into some fields in a
table
 
Open the table in design view.
Select the field.
Change it to a Memo type instead of a Text type.
 
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)
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top