I inherited a database; its form has a Materials field with the expression
A user told me that she could no longer input data into the field. I looked at the query, and the Materials table was no longer listed; it's very possible that someone accidentally deleted the table from the server. So, I added the table to the query, joined by ID, and...the form doesn't work. "Control can't be edited, it's bound to the expression" error. I tried each kind of join; none work.
I know this worked in the past. And there's a bit of information about this error online, that suggests the field should be updateable if the table (in this case Materials) is joined in the query.
Does anyone know what else may have gone wrong?
Thanks in advance!
Code:
=IIf(IsNull([ID]),"",DLookUp("[Material]","Materials","[ID] = " & [ID]))
A user told me that she could no longer input data into the field. I looked at the query, and the Materials table was no longer listed; it's very possible that someone accidentally deleted the table from the server. So, I added the table to the query, joined by ID, and...the form doesn't work. "Control can't be edited, it's bound to the expression" error. I tried each kind of join; none work.
I know this worked in the past. And there's a bit of information about this error online, that suggests the field should be updateable if the table (in this case Materials) is joined in the query.
Does anyone know what else may have gone wrong?
Thanks in advance!