I have a multi-choice drop down created with a list of possible training topics that a team member may need.
I have a Visible function when the line of business equals Save a Trip, Home Delivery , or Pharmacy Care Center AND Team member requires additional training equals
(DataCardValue32.Selected.Value ="Yes" && "Save a Trip" in DataCardValue20.SelectedItems.Value) || (DataCardValue32.Selected.Value ="Yes" && "Home Delivery" in DataCardValue20.SelectedItems.Value) || (DataCardValue32.Selected.Value ="Yes" && "Pharmacy Care Center" in DataCardValue20.SelectedItems.Value)
I have a list of training topics but they don’t all apply to each of the different lines of businesses (Save a Trip, Home Delivery, and Pharmacy Care Center) and in some cases it applies to two different line of business. How could I alter the drop down to hold above true and then only show the respective Title of the training topic based on the line of business selected. 
