[COLOR=var(--black-200) !important][COLOR=var(--black-500) !important]0
[/COLOR]
[/COLOR]
I need to process through a list of technical skills one by one and get a count of the number of developers we have in 3 locations who have that skill. For example, Skill = "Java". How many persons have this skill listed in their resume.
I have 2 tables:
Skills: contains a single column listing skills - "Java" for example Resources: contains 4 columns, Resource-ID, Name, Location, and a long text field called "Resume" containing text of their resume.
If this were a single skill I would process the SQL something like below (SQL syntax not exact) SELECT count FROM [Resources] WHERE ([Resources].[Resume] Like "Java*");
I want to process the Skills table serially printing the "Skill" and the count in each location.
Help appreciated
I've only used Access as a DB for single record retrieval, never using table values as input to loop through a process. I suspect that this is a simple execution in MS Access.