My InStr keeps telling me its mismatched
问题 englishReasonsToGoToSecondFloor = "test" & ";" & "exam & pay" & ";" & " possible fake" So my values may contain a & or (space) or just a single word. Each item is separated by a ";" so the final list will look like "test;exam & pay;possible fake" When the user selects an item from the Listbox, I want to quickly compare the selection with the words in the variable rowValue = Trim(listboxTest.Column(1)) englishResult = InStr(rowValue, englishReasonsToGoToSecondFloor, CompareMethod.Text) I can