Ok I've searched and nothing seems to tackle my exact problem, and i've tried modifying codes i've found to fix this problem, but nothing.
I have a navigation form with subforms.


The button i'm working code on is the "New Record" button. It works but will not let me set the focus to the field in the subform I want it to go to after it is clicked. in the second image, on the subform itself i have a "Save-New" button that will work and go to the control i want it to. But i'd like to get rid of that button and just use the "New Record" button since it will be at the top of each subform.
right now the code is
Code:
Private Sub cmdNewRecord_Click()
Me.NavigationSubform.Form.Recordset.AddNew
End Sub
I've tried adding a set focus and can't get it to work, i would need it to be with an iif because depending on which subform it is it needs to shift focus to a different control.
Can anyone help me with this?