I've been working on this database for about a week now and it is my only experience with Access so far so I don't know too much VBA yet. My problem currently is that I am attempting to Add a record to a database on a split form, and I want it so that when I choose the department via combobox that it populates a textbox with the departmentID. I have tried using the code below on the on change of the combobox
Any help with this would be greatly appreciated. Thank you
Code:
Private Sub Department_Change()
Me.DepartmentID.Value = Me.Department.Column(1)
End Sub
Any help with this would be greatly appreciated. Thank you

