I have built a report that I would like to have a hyperlink field that will direct the user to the entry form so that they can edit the information for that record. I have been successful in hyperlinking to the form, but I have not been able to get it to open the form to the specific record...
I have completed a database for work, but I have been researching for a way to create a login screen where each user creates their own username and login. I would also like to be able to only allow certain permissions per user. Is there a way to do this in Access 2007?
Any help would be...
I have a form that has a combo box to that autopopulates the other fields on the table. I would like for the form to update existing data for a record, if such data exist or to add a new record if no information exist. So far, the form just makes a new entry each time you open the form as...
That worked amazingly! Thank you!
The only problem is that now the combo box shows all three values instead of just the Name. Is there a way to change that?
I apologize for my ignorance. I am pretty new to Access.
Hello. I am building a database and I seem to be stuck. I built code to autopopulate text boxes based on a combo box selection. Here is the after update code that I have on the combo box:
Private Sub Civ_Name_AfterUpdate()
Me.Organization.Value = Me![Civ_Name].Column(1)
Me.Organization.Requery...