
Originally Posted by
John_G
That does not look like a standard error message from MS Access. It does not ask you to call your network administrator, because in many cases it isn't even on a network. You might also want to scan your computer for malware - that error message looks a bit suspicious from that point of view as well.
Thanks John!
For the field that is giving you problems - what are the settings (if any) for input mask or validation rule?
Are there any form or control event procedures that might produce this error?
It could be the control event procedures. I'll check again.
I have a code back-end that will give me values which I can edit...
Code:
Field A AFTERUPDATE is
Rate = (Field A+ FIELD B+ FIELD C)/180
Field B AFTERUPDATE is
Rate = (Field A+ FIELD B+ FIELD C)/180
Field C AFTERUPDATE is
Rate = (FIELD A+ FIELD B+ FIELD C)/180
There is no coding in RATE field and RATE field is editable. This is where I am having the error. Could that be the problem?