I have an Access DB. I have a form with three fields for changing vendors per username.
In the access database I have a unique username and a unique vendor. What I want to do is let the users change their vendor instead of me having to do it... so I wanted to write something like:
if username == username and
vendor == vendor
then
new vendor == vendor
So I have three slots on the form. One for username, one for old vendor, one for new vendor and then a submit button. I want to make sure it only updates the vendor where the username is specified using an access database. Is this possible, if so how?