Decimal field error

Nichols, Shanyse 0 Reputation points
2026-09-10T13:29:42.9666667+00:00

I received this error. How do I fix it. The decimal field's precision is too small to accept the numeric you attempted to add. (Error 3761)

Microsoft 365 and Office | Access | For home | Windows
0 comments No comments

1 answer

Sort by: Newest
  1. Marcin Policht 106.8K Reputation points MVP Volunteer Moderator
    2026-09-10T13:33:45.02+00:00

    In Microsoft Access, Error 3761 means the value you are trying to store in a Decimal field is too large or requires more decimal places than the field's defined precision and scale allow. For example, if the field is defined with Precision = 5 and Scale = 2, it can store values up to 999.99. A value such as 1234.56 would exceed the field's precision and cause this error.

    Open the table in Design View and select the Decimal field that is generating the error. In the Field Properties section, check Precision and Scale. Precision is the total number of digits allowed, including digits on both sides of the decimal point. Scale is the number of digits allowed after the decimal point. For example, Precision = 10 and Scale = 2 allows values from -99,999,999.99 to 99,999,999.99.

    If the field needs to accommodate larger values, increase its Precision and/or reduce the Scale. For example, changing Precision from 5 to 10 while keeping Scale at 2 allows substantially larger values. Also check the query or calculation that is inserting the value, because the calculated result may be larger than expected or may contain more decimal places than the field permits.

    If you are unsure which field is causing the problem, look at the query, form, or append/import operation that produces the error and identify the Decimal fields being populated.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.