I am going to try a different way to add skills based on my previous posts.
In my database I have a tables that stores skills data for my resources.
tblSkills
SkillsID
Abbr
tblSkillsResources
SkillsID
ResourceID
Skills (I want to update this table with data from tblSkills)
tblResources
ResourceID
etc.
I am setting this up as a main form to add skills that pulls skills data from tblSkills, links to tblResources and stores in tblSkillsResources.
My main form pulls from tblResources
My subform pulls from tblSkillsResources and another tab pulls from tblSkills to add skills data to tblSkillsResources.
The objective is to run a report of all the resources who have a specific skill set so the data needs to be captured separately.
If I create separate check boxes tied to tblSkills that will store data in tblSkillsResources,
Each check box needs to be tied to tblSkills.abbr will need to update tblSkillsResources.Skills.
What is the best code to accomplish this?