I’m trying to filter down a lost of jobs, and I need to take two subsets of a list and merge them.
First, take the list of jobs, and match them with the person’s career profile’s job types they are interested in. So if the person Selects Full Time and Part Time and jobs that have either Fully Time or Part time selected will stay in list.
Second, if the job post’s Job Type is empty, I also want it to appear in the list.
I’m trying to do a merge, but it does not seem to be showing the jobs correctly. My guess is that the 2nd filter is applying to everything. Is this correct, and if so how would I do this?
@lachlankirkwood1 Sorry for the confusion, I noticed that one filter has ignore empty constraints, and the other does not, but as you mentioned I don’t think that matters in this case.
What I feel the issue I’m dealing with is that the last filter is applying to both, and that is not what I want.
@adamhholmes suggestion on parenthesis sounds promissing if it works, I’m just not clear on where to add them?
Maybe this?
(job-list:filtered) merged with (job-list:filtered)
One is for if the job type is empty, and the other is if the job type matches the Career Profile’s type. These are two different things. I’m not sure how you would combine them.