How to build a query in the "Custom List" that uses a custom field type multiselect and I want to make a "contains" on a certain part of the allowedvalue string.
e.g. Custom List Vehicle Type have following values among many.
- Car - Convertible
- Car - SUV
- Car - Sedan
- Car - Wagon
- Truck - Std. Cab
- Truck - Ext- Car
I would expect to be able to get all workitems returned that is assigned to the allowedvalues that contains "Car" using below query in the custom list app.
(c_Vehicle contains "Car")
or
(c_Vehicle containsany "Car")
However, this does not work, the only way to get all items assigned to values that contians "Car" is to create an OR query that lists all of the values that contains "Car" e.g. ((c_Vehicle contains "Car - SUV") or (c_Vehicle contains "Car Wagon"))
Any one who knows how to do that... Note, it is possible to use contains on Tags.Name, but seems not to work on multidropdown...