I have some code and it works for returning single values but I need to modify it to bring back multiple results
Public Function States(s As String) As String
Select Case True
Case InStr(s, "Alabama"): States = "AL"
Case InStr(s, "Kansas"): States = "KS"
Case...