Hello everyone,
Good day!
I have combobox named Combo_box1.
When I tried to do if statement using code
"HRIS" in Combo_box1.Selected.Title
it returns false cause it didn't find the HRIS. But I removed the other selected Workday. It results to true.
What is the best approach to find what I'm looking for.
Hi Shoog,
Good day!
Thank you for your answer. This solves the problem.
Selected only works for single-select, you would have to use SelectedItems and make it append the title values, something like this:
"HRIS" in Concat(Combo_box1.SelectedItems,Title)