anyway to stop a scheduled workflow after a certai...
# general
m
anyway to stop a scheduled workflow after a certain number of results? I'm trying to break a large job up into manageable chunks by creating 10 tasks per day, but my source saved search has hundreds of results. I'd like to be able to kick off the scheduled workflow and then have it terminate after creating 10 records.
d
ROWNUM < 10 will limit your search results to 10 records, if you're creating a condition that removes the record from other search criteria, this will only effect 10 results per execution.
✔️ 1