I need to autofill a field on a table from a field on a form.
Table Name is Requests and Field Name to update is Status
The user will choose from a combo box and after update should populate the corresponding field on a table.
This is what I have (missing the table and field to update):
Private Sub Status_AfterUpdate()
If Not IsNull(Me.Status) Then
??????? = Me.Status
End If
End Sub