Hey! I’m building an app that allows different users to create their profiles and add the skills they have from a list of different options. These skills might be for example:
- Advertising
- Social Media
- Automation
- Design
- Copywriting
…
I have thought of two different ways of making the Design but I can’t figure out how to make the necessary Workflows to create the database objects from the user inputs.
Design options
- Using the Multiselect Dropdown plugin from Bubble. This plugin allows the user to select different options from a dropdown.

- Using a repeating group, displaying all the different options with checkboxes and letting the user check the ones that correspond to the options they want to select.
In both cases, the user has to click the Next button after the choice is made. My question is: How can I store the data in the database when this is done?
What I thought of doing
I have created a data type called Skill with two fields:
- Name (text)
- Has it (list of users)

Also, I added a Skills (list of Skill) field to User:
Then, I manually created 12 different skills which are the ones I want to display for the user to choose. (Advertising, Social Media, Automation, Design, Copywriting…)
When a user selects some skills, I want to add those skills to the field called Skills (list of skills) under User.
At the same time, I thought of adding that current user to the Has it list of users that corresponds to the skills. For example, if User 5 selects the skill ‘Copywriting’, User 5 is added to the Has it list of users from Copywriting.
However, I can’t seem to make it work. Since it’s a multiple dropwdown, I need to make changes to multiple things when the button Next is pressed and I don’t know how to do it. Also, I don’t know if this is a good approach, if there is an easier way to do it, etc.
Any type of help is much appreciated. Thanks a lot for reading!



