Hi,

I try to filter the store using IN logic with code below.

        Dim oDataFilters As New DataFilterCollection
        Dim oDataFilter As New DataFilter

        oDataFilter.Op = "in"
        oDataFilter.Value = "[TEXT1, TEXT2]"

        oDataFilters.Add(oDataFilter)
        storeObj.Filter(oDataFilters)
The store is empty after the filter. Even TEXT1 and TEXT2 is exists.
How can I filter with IN method?

Thanks.