Error Message: the field is too small...

LeonDixon

New member
Local time
Today, 10:34
Joined
Sep 17, 2014
Messages
6
Hi,

I currently have a drop down box with four options in there and the options are:

Low
Minimum
Medium
High

However when i change the options in the table to:

Low
Moderate
Significant
High

it comes up with the error message: the field is too small the accecpt the amount of data you attemtpted to add. Try inserting or pasting less data.

I do not understand what is wrong with the second option of words? The maximum for characters is set to 255 so i am not sure why it is coming up with that error message.

Can anybody help with this?

Thanks!
 
Check the RowSource of the ComboBox. If possible post it on here.
 
If the field of the table is short text, try to see how many characters you set the field to accept.
 
after you pick "significant" - where does this value get stored? that's probably the issue. Maybe it's text(10) - significant has 11 characters.

The other thing is - you are generally better using numbers, rather than text strings for things like this. You may have a table with entries including the value "medium" which now is meaningless, since instances of the value "medium" should now be "significant".
 
The other thing is - you are generally better using numbers, rather than text strings for things like this.

Definitely. Using numbers is not only more efficient but it also allows simple querying of a range of values which would otherwise have to be done with tests for each string value.
 

Users who are viewing this thread

Back
Top Bottom