instead of just being able to hit enter to move to the next
combo-box in B15
Why are you trying to activate a range
If KeyCode = 13 Or KeyCode = 9 Then
Range("B15").Activate
End If
Have you tried activating the combobox itself (replace with correct combobox name)
If KeyCode = 13 Or KeyCode = 9 Then
ComboBox2.Activate
End If
Are the comboboxes linked to the cells where they lie?
Could try this code ...
If KeyCode = 13 Or KeyCode = 9 Then
For Each objX In ActiveSheet.OLEObjects
If TypeName(objX.Object) = "ComboBox" Then
If objX.LinkedCell = "B15" Then objX.Activate
End If
Next
End If
Bookmarks