Running into a DLookup Syntax Error in Access.
I am attempting to return the value located in the column [fld_linear_foot] from the table [tbl_model_number] -- my criteria column is titled [fld_model_number_official], and the criteria column must match a combobox [cbx_model_number]selection on my form.
=DLookUp([fld_linear_foot],[tbl_model_number],[fld_model_number_official]=[Forms]![frm_estimator]![cbx_model_number])
However, this gets a "#NAME?" error, which I think is because the data stored in the fld_model_number_official is text based, not numerical based.
I believe most of the error issue is stemming from [fld_model_number_official] is stored as text, not numerical. However, I have tried multiple layouts of quotation marks to attempt to get it treated as text, all which have not worked.
Can anybody shed some light on where this simple Dlookup is going wrong?