I have some list data from SharePoint that contains a multiple selection choice column. I want to determine if certain selections have been made and hide additional edit cards depending on the list items selected. I am able to do this easily with other controls that are simple yes no radio buttons using.
DataCard1.Update = false
I can get it to work for a single selection from these drop downs using
DataCardvalue1.Selected.Value = "Test Selection"
But this changes when I select more than one result. I need a formula that does the same as above but instead of equals it uses contains.