I have tried both innerhtml and innertext, both of which matched my string "Missing Enrollment" but my .click function is not clicking the item inside the drop down menu.
I know that innertext matches the string I put because I used F8 to run through step by step and saw "Missing Enrollment" inside locals.
Set AvailableLinks = IE.Document.getelementbyid("messageMessageTypeId")
For Each cLink In AvailableLinks
If cLink.innerhtml = "Missing Enrollment" Then
cLink.Click
End If
Next cLink