Results 1 to 12 of 12
  1. #1
    Accu-Grind is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Apr 2015
    Posts
    25

    Increasing the character limit for a feild

    Not sure I'm in the right forum, but I have a form and the amount of info I need to input is larger than the amount it allows. I will not let me continue typing after a certain point. Is there a way to increase the limit so I can add all of my data? It's basically a comment that I need to add.

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    How long is the field in which you are storing the data?
    How long is the data you need to store?

  3. #3
    Accu-Grind is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Apr 2015
    Posts
    25
    I don't know where to access the field length in a number form, but what I'm trying to write is the following:

    Procedure P 7.4-1, Step 6.13 required that purchase orders for measuring equipment include the following statement: "A copy of calibration certificate for each piece of measuring equipment calibrated including traceability to NIST." Following purchase orders did not include the statement: Precision Inspection (P.O. 6517), Robert E. Morris (P.O. 7457), and Zero Check (P.O. 0482).

  4. #4
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    Did you create this database? Can you tell us more about the database and how it is used?

    A text field in an Access field can be up to 255 characters in length.
    You could use a memo/long text field instead.
    see this for more info

  5. #5
    Accu-Grind is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Apr 2015
    Posts
    25
    I have a form and a sub form that is taken from a different table. I am trying to write that in a field of the table, but it is not big enough.

  6. #6
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    What do you use this database for?
    You may be able to store the text in a memo field. But there may be other issues with memo fields depending on what your needs are.
    If you did not design this database, you may want to talk with the designers.
    In any event you may want to ensure you have a backup of the database before making any changes. You don't want to lose what you already have.

  7. #7
    Accu-Grind is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Apr 2015
    Posts
    25
    This is a correction action database. There are many corrective actions and each have comments about their corrective action. That one in particular just happens to be too long for the table.

  8. #8
    Perceptus's Avatar
    Perceptus is offline Expert
    Windows 7 64bit Access 2007
    Join Date
    Nov 2012
    Location
    Knoxville, Tennessee
    Posts
    659
    I would count the number of characters you can type in the field. Is it 50? 50 is kinda low, 255 is the max. Or you can get the field in the table to be a memo. Memo is used for larger amounts of text. Stores up to 65,536 characters. Note: You cannot sort a memo field. However, they are searchable

  9. #9
    Accu-Grind is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Apr 2015
    Posts
    25
    I'm going to say it is the 255 one

  10. #10
    Perceptus's Avatar
    Perceptus is offline Expert
    Windows 7 64bit Access 2007
    Join Date
    Nov 2012
    Location
    Knoxville, Tennessee
    Posts
    659
    You would need to change the system field type for this field from text to memo. This kind of change usually prompts you for dataloss, as the system needs to convert the text fields data into a memo. To change this field. you can try executing an ALTER TABLE command. or you can try to find a table in the Navigation Pane on the left hand side(F11 usually shows it).

    Before you do anything, backup. I break databases atleast once a week. backups save my ass all the time.

  11. #11
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    You may also consider a change in table structure.

    Suppose you have a tblCorrectiveAction and a related table tblCorrectiveActionComments.

    For each CorrectiveAction, you could have any number of Comments related to that specific corrective action.
    This would be a 1 to may relationship where each comment would refer to a specific corrective action.

    The CorrectiveAction could have code, id, name, description (255 chars max)
    and each comment could be up to 255 chars. with as many comments as necessary per Corrective action.

  12. #12
    Accu-Grind is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Apr 2015
    Posts
    25
    Changing it to a memo has done what I needed. Thank you.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Text field character limit
    By DB88 in forum Access
    Replies: 1
    Last Post: 05-14-2014, 03:27 PM
  2. Query exceeds 1,024 character limit
    By EddieN1 in forum Queries
    Replies: 2
    Last Post: 05-20-2013, 08:11 AM
  3. Character limit in form field
    By tanveerksingh in forum Forms
    Replies: 3
    Last Post: 08-22-2012, 11:04 AM
  4. SendObject Message Character Limit
    By kevins in forum Access
    Replies: 9
    Last Post: 07-20-2012, 09:58 AM
  5. Text Box control and character limit?
    By Bigdoggit in forum Forms
    Replies: 2
    Last Post: 03-29-2011, 10:05 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums