I have a tool I've built to schedule a production line.
When looking at this, think of a calendar.
I have a main form, which has a combo box to pick a line we are scheduling. This is simply a box used as a filter.
On this main form, are several subforms, which reprent the days of the week.
I have 14 subforms. This works perfect for my project.
What I've done, is created a form, basically filtering by date. Subform are records for Date(). My subforms are named Day_1, Day_2, Day_3, etc.
What I need to happen, is that the first form, is always Sunday, and the next form is always Monday, and so on through Sat.
Then on the second row, I would want to start again.
The issue I see, is I'm applying a filter calling out Date() for subform Day 1 and Date ()+1 for subform Day_2 and so on. The subforms are specific so it's always going to be Day_1 = Date() in the first form. No matter what day of the week it is.
I am not sure how to change it so the first subform is Sunday...
I know this sounds confusing, so please ask me what you need me to clairfy. I'm sure it's not difficult. I did this years ago, I believe, and just can't seem to put my thumb on how I did it.
Thank you in advance!!!!