A family of Microsoft relational database management systems designed for ease of use.
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