I’ve been trying to learn how to use recursive scheduled workflows but I am not fully comprehending how to set them up.
Here is my situation:
I have a list of things, each thing has a category and a location field. I am currently using a sample of my data but the live database will be quite large.
I have a formula for a score that I want to apply to each thing with a matching category and location. I was hoping to run this in the backend workflows because my front end page takes a long time to load and with the number of possible combinations it could mean reloading the page using dropdowns over and over hundreds of times.
How can I set up a backend workflow that will run on a list of things that match location1, category1 then location1, category2 then location1, category3 and so on until we run out of categories. Then it will run location2, category1 etc.
I might as well point out one complexity while I am at it. In each iteration the formula needs to gather the overall average of a 3rd field of data (rating) from this list of matching things.
Any help would be greatly appreciated. At least pointing me in the right direction to find a solution.