I am trying to type info into a cell and it will only let me type in about 25
characters. How can I get the cell to hold more characters? This is in a
form.
1) Access Tables do not have cells, they have fields.
Access Forms do not have cells, they have controls.
Controls are different from fields, though controls may show the
values in the fields.
2) In Table Design view, set the Field Size to a higher value (up to
255).
3) Check the Table Field's Validation Rule property.
You may have a Validation Rule limiting data to 25 characters.
4) Check the Form Control's Validation Rule as well.
5) Check the Form Control's BeforeUpdate event, as well as the Form's
BeforeUpdate event.
Do you have any code there limiting the number of characters?