I am trying to make a field on a form named txtWORKING_INTEREST fill with a DMax from a table. The code I'm trying is:
Me.txtWORKING_INTEREST = DMax("[WORKING_INTEREST]",
"tblPropertyInterests", "[PROPNUM] = '" & Forms!frmRecordsHeader!txt
PROPNUM & "'")
And the table, tblPropertyInterests" looks like this for txtPROPNUM:
![Table Example]()
But the after update event keeps filling the field txtWORKING_INTEREST with 9.350474 (which is a text field as is txtPROPNUM on the form).
What have I missed?