Hi,

I'm trying to introduce a call command to fire a different procedure upon change of selection:

Private Sub ComboBox31_Change()

If ComboBox31.Value = "HUBAHH004" Then
Me.TextBox28.Value = 2
Me.TextBox49.Value = Val(TextBox28.Value) * 9.071
Call ComboBox36_Change
End If

End Sub
Am I allowed to do this as it doesn't work. Cheers