I have a combobox in Word that is supposed to populate the termShorthand text field based on the selection from the termWritten array. I am receiving the Block If without End If compile error even though I have it after my If statements.
Private Sub termWritten_DropButtonClick()
termWritten.List = Array("first", "second", "third", "final")
End Sub
Private Sub termWritten_Change()
If termWritten.Value = "first" Then
termShorthand.Value = "three (3)"
Else
If termWritten.Value = "second" Then
termShorthand.Value = "two (2)"
Else
If termWritten.Value = "third" Then
termShorthand.Value = "one (1)"
Else
If termWritten.Value = "final" Then
termShorthand.Value = "no"
End If
End Sub