Are you saying that you're Default Value expression refers to other fields?
If so, while I didn't find any documentation saying that you couldn't do that
at the table level, I was unable to do it with a simple example.
Moreover, do you wish to allow the calculation to be overwritten by the
user? If not, you would be better off without the field entirely, and simply
calculate it as a calculated field in a query, and display the result in an
unbound textbox on your form.
If, however, you wish to assign a DefaultValue using an expression involving
one or more fields and allow the user to overwrite it, I suggest you assign
the value explicitly in the AfterUpdate event procedure of all fields
involved in the calculation:
Me![YourTextbox] = {Your Expression}
If that does not help, please post more detail, including the names of all
fields, the expression you wish to assign, and any code behind these fields.
Sprinks
cydvicious said:
It seems logical, i mean i understand what your saying. But for some reason
when i use the same expression in the default value of the table that i used
in the form it doesn't recognize the fields, even though both colums exist in
the table and the form... i'm pretty novic-y so hope you don't mind answering
my questions I appreciate your quick responses