Hi @Friscosammy
You can achieve this by using the in operator.
If(
CountRows(
Filter(
ComboBox1.SelectedItems,
Value in DataSourceOf36Countries
)
) > 0,
"yes",
"no"
)
If(
CountRows(
Filter(
YourCountryComboBox.SelectedItems,
CountryColumnName in ["Yemen", "Costa Rica", ...] // List all 36 countries
)
) > 0,
"Yes",
"No"
)
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.