G
Guest
I have a 10 step process. Items entering into this process may or may not go
through all 10 steps. I want to set up a way to track each item going
through this process and display the current step this item is in ant any
given point. I also want to be able to display which steps are being bypassed
and which are not yet completed: In other words I want to end up with a
report or form that resembles
item1 - last step completed = step 6
step 1 - 7/1/06
step 2 - 7/2/06
step 3 - NA
step 4 - 7/4/06
step 5 - NA
step 6 - 7/7/06
step 7 -
step 8 - NA
step 9 -
step 10 -
would I be able to get these results from the following table structure?
tblProcess
-----------
ID (int)
item# (int)
step# (int)
dateStepComplete (date)
stepNA (bool)
The second part would be how would I structure the query to display these
results for a specific item#?
Thanks
Brian
through all 10 steps. I want to set up a way to track each item going
through this process and display the current step this item is in ant any
given point. I also want to be able to display which steps are being bypassed
and which are not yet completed: In other words I want to end up with a
report or form that resembles
item1 - last step completed = step 6
step 1 - 7/1/06
step 2 - 7/2/06
step 3 - NA
step 4 - 7/4/06
step 5 - NA
step 6 - 7/7/06
step 7 -
step 8 - NA
step 9 -
step 10 -
would I be able to get these results from the following table structure?
tblProcess
-----------
ID (int)
item# (int)
step# (int)
dateStepComplete (date)
stepNA (bool)
The second part would be how would I structure the query to display these
results for a specific item#?
Thanks
Brian