Multiselect dropdown and filtering

Hii, I want to show only that data which is choose in my dropdown, I mean if I select “Salon” (skill) in my dropdown then only that user come which have salon skill(from database)
I am using repeating group where I m able to show whole data of my database, but now I just want to show data according to “selecting in dropdown”


this is the data of my database but i want to filter it according to dropdown

Hi there, @aarti… if I understand your post correctly, you can get the desired result by using an advanced filter that does a count of the intersect between the list of skills selected in the multi-dropdown and each user’s list of skills. In the following example, I used an option set to define the skills, and I have a skills field (list) on the User data type that links to the option set.

If you have never used an advanced filter before, be aware that the filtering is done on the client (browser) side. So, the search is going to return all of the relevant things to the client, and then the filter will be applied (which could have an effect on performance if the search returns a lot of things). Also, the Advanced option can be a bit tricky to find… it is all the way at the bottom of the dropdown when you add a constraint to the filter.

Hope this helps.

Best…
Mike

2 Likes

Thank you so much, its working…

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.