• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

how to read a paragraph into an access field?

kyledavis

Junior Member
I was wondering how it is possible to have a paragraph longer than 256 in access? Can I write my paragraph in an excel file and reference the file in access?
 
Originally posted by: kyledavis
I was wondering how it is possible to have a paragraph longer than 256 in access? Can I write my paragraph in an excel file and reference the file in access?

Use the data type 'memo' instead of text. This should give you plenty of space, it is a variable size field, not sure what it's maximum size is, probably at least 64k.

 
just be careful that you don't end up w/ huge mega size DB files full of memo fields... it can make her stuff super slow if you are using old hardware etc 😛

referencing external file w/ hyperlink can also work depending on what kind of output you are trying to generate from the base table.. ie if it's displaying in a browser etc. you could just hyperlink to external txt files or something.. if you are using internal form reporting i guess the memo would be the way to go tho.
 
Originally posted by: kyledavis
any ideas anyone?

what's the problem with using a memo field anyway? Don't worry too much about overusing it, you shouldn't see problems until you start having millions and millions of rows; I suspect you won't have as many records in your table.

 
When I have used Memo fields (to store War & Peace), I will keep them in a seperate table and link an index to the relevant record.

Memo fields can store up to 32K characters.
 
Back
Top