There is a very good chance this is far more complicated that I am hoping, but I often overcomplicate things, so I thought I would ask after putzing around for a while.
I have a table in which the name of an item is the primary key, since it will always be unique, and I don't want duplicate records. I am updating the number of the items, so right now what I do is search for the name of the item to see if it already exists (with Ctrl F in the form) and, if so, I update the number. If not, I make a new entry.
I am trying to figure out if there is a way to have the form actively look at the table to see if the name of the item (primary key) exists and bring up that record if so to eliminate the search. Otherwise, it just lets me happily type away. Kind of a lookup with the source being the field in the table itself instead of a separate source table.
I appreciate any guidance you may be able to provide. Thanks!