I know this is has several threads and I can do this successfully using queries, but I have a situation I am trying to create in a form.
What I am doing is creating a production schedule for our manufacturing facility.
This is a blank canvas, so looking for some creative ideas!
I have a temp table for the part which shows what we need to cover the schedules each week. For the factory, we need to try to level load this demand, meaning we have orders like, Week 1, 1200 pieces, week 2, 1000 pieces, week for 2300 pieces, etc.
We would try to level load this at 1835 pieces per week....
For each record, defined by the week date, we would want to load 1835 on those 3 lines.
I would like to do a running total in the form where we are scheduling, which adds 1835 to week 1, and then 3670 would calculate for week 2 and then 5505 for week 3 and so on... we are scheduling way more than 3 weeks at a time and we may have some 0 weeks in there ect, for shared assets to run other products.
Thoughts on how I could create the running total output? Should this just be a query that recalculates each time we load a week or is it possible to write this formula to an unbound text box in the form?
I have a unique ID and all that to calculate the running total... just not 100% sure on how to tie all the logic together to do this.