I apologize for this question in advance if it is painfully simple, but I have been clomping around trying to teach myself Access as I set up this DB.
I have two tables, one is a list of book numbers and appraiser assignments, the other is the table where the data is stored. (info from the claim form - taxpayer name, etc.)
info from the claim is entered onto the main form. I have a separate form to work just with the pending claims, where I can enter the dates assigned and appraiser assignments without paging through all the records.
when I enter the parcel ID#, I would like to compare the number against the appraiser list and automatically fill in the appraiser field. (right now, I look it up and enter it manually.)
complicating this a bit is the fact that I will need the ability to occasionally manually override the book assignment (sometimes they may trade claims with someone else, and I need to know who HAS the claim).
I have a non-visible field on my form that Trims the first three numbers of the parcel to compare with the book assignment table. at one point I got the lookup to work (find the correct appraiser) but that was not bound to my Appraiser field, so it wasn't saved to the table and I couldn't overwrite it. it would just appear correctly on the field on the form.
after I started trying to figure out how to add the override ability, it stopped looking up the appraiser.
if I put
=DLookUp("[senior]","[Appraiserlist]","[apn3] = [Appraiserlist]![booknumber] ")
as the control source the field looks up the appraiser and shows it on the screen. when I bind the control source to the appraiser field so it will save the info to the table, it doesn't look up the appraiser no matter where I put the formula - beforeupdate, afterupdate, etc.
(if I can EVER get this right, I will start trying to add the SPLIT books, where they are assigned certain pages instead of the entire book.)
I hope this makes sense. can anyone 'splain this to me in small words, or point me in the right direction? I am completely unfamiliar with code, and while I know where the "bound" "beforeevent" "afterupdate" properties are, I'm not positive how it all works. I get little pieces from reading the other posts, but I just can't put it together.
thank you in advance!