Answers for "excel vba check if every substring in list are in string"

VBA
5

excel vba check if every substring in list are in string

'VBA function to check if ALL of a list of substrings is contained
'within a string:

Function AllIn(s$, ParamArray checks()) As Boolean
    Dim e
    For Each e In checks
        If 0 = InStrB(s, e) Then Exit Function
    Next
    AllIn = True
End Function
  
'-------------------------------------------------------------------
  
MsgBox AllIn("abcde", "d", c, "a")   '<--displays: True
MsgBox AllIn("abcde", "d", c, "z")   '<--displays: False
Posted by: Guest on May-03-2020

Code answers related to "excel vba check if every substring in list are in string"

Code answers related to "VBA"

Browse Popular Code Answers by Language