Hi, I've put some code together to achieve:

TextBox7 - Combobox19 = TextBox9

However, I think I've cocked this up! Help

Private Sub TextBox9_Change()
Dim d As Double
d = Val(TextBox7.Value)) - Val(ComboBox19.Value))
With TextBox9
.Value = d
End With
        
End Sub