Hi.

Is it possible to achieve this:

User Inputs Mileage on Car [Miles]
User Inputs Distance Driven Per Month, on Average [MonthDist]
Application Divides MonthDist by 30 to calculate average each day, DayDist
As Each Day Passes (or any recurrence), Application adds DayDist to Miles for an approximation. (Precision is not important for my use case. Tolerance of about ~1K Miles)

Bold Represents Data Type.

I’m stuck on how to go about the last two steps. Any guidance would be great.

I am okay with any recurrence, minimum being a day and maximum being a month. The smaller the recurrence, the better, but as long as it’s between those two parameters I don’t really care.

Hey @autovantaofficial

You can achieve this in three different ways

  1. Schedule a backend workflows to run across all records and update them. You will need to schedule a recurring workflow

  2. only update the record when you need to. For example if the data does not need to be updated till it needs to, then adjust your formula to also get the difference in dates between the last update date and current date then update a single record.

  3. you can use a service like zapier or easycron to call a backend workflow to run the calcs across your dataset.

Obviously each method has pros and cons, the 1st should be the easiest to do.

The keys message here is to be efficient. Avoid updating records that are not needed. Only update when you need it. Less Workload Units = less $$$

Let me give that a try. Thank you Ali!

1 Like