To have the scenario separate out multiple job titles, and then have a repeatable rule that means that it runs even if a certain module returns no results.
What is the problem?
I have a scenario that takes a CV (I run a recruitment business) and to find live open job roles that have the same or similar job titles.
During the run of apify module which scrapes the job board, if one of the titles returns no results then it stops the scenario from continuing, or the data being parsed into the next scenario in this build (which is the final module of this mentioned scenario currently).
Additionally, I am struggling to have the âexclude companyâ filter from my apify actor update dynamically, based on the list of companies that Module 27 (the google sheets search rows) comes back with.
What have you tried so far?
I have tried using a repeater module, and different ways of creating / separating out the job titles.
You donât need the Repeater. On the first Iterator, you execute the flow once for every entry returned by the AI tool (splited into an array).
Then you iterate again to execute the remainder of the scenario (including the job search) for each 27.organization(E). Notice that you never aggregate on any of these iterators, generating a lot of executions.
Besides, whatâs the point of module â27 Search Rowsâ after the iterator, if youâre not using any value from the iteration as a filter for the search? Youâre just reexecuting it everytime and getting the same results.
Since I donât have an Apify connection, I canât see your setup.
I advise you to post an example of your results from module 27 and a screenshot of the job search module setup. This will help us look into the issue.