A family of Microsoft relational database management systems designed for ease of use.
I've posted an amended copy of your file to as JohnSharp.accdb to my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
You table did not actually include a multi-valued field, so rather than using that, I've modelled the many-to-many relationship type between notes and skills in the conventional way by means of a table which resolves the relationship type into two one-to-many relationship types. Take a look at the relationships window to see the model.
In your skills table you'd also use multiple columns for the skill names, where you should have used a single column with multiple rows. I've corrected this structure.
For data entry I've amended your form by including a subform within the parent notes form. Multiple skills per note can thus be entered by inserting multiple rows in the subform. Note how a new skill, not currently repre3sentedin the combo box's drop down list, can be entered into the skills table by typing the new name into the combo box. Code in the combo box's NotInList event procedure then, subject to user confirmation, inserts a new row into the skills table.
To concatenate the skills into a comma separated list I've added a function, which you'll find in the basGetSkills module. This is a function specific to this task, rather than generic one like that Daniel referred you to earlier, or that in the Con cat.zip file in my OneDrive folder. It is similar to that which I posted in my earlier reply, but in this case for use with a conventionally modelled many-to-many relationship type, rather than one modelled by a multi-valued field.
I've included a query which calls the function, and a simple report based upon the query.