I have a process at work with a beginning and ending date. Within those dates, several people will be assigned responsibility at a particular point in time (date). When they're done with their part of the process, they "hand off" to another person, again on a particular date. When the last person completes the process, they update the Ending Date and we're done.
What I want to do is capture the entire "chain of custody" from the beginning date to ending date, and identify the names and assigned dates of all those who had custody for any period of time. During the process, I want to calculate in a form and report a running total of the number of days the process is taking and when the process is complete, record the number of total days from beginning to end, as well as the number of days each person took to "do their part".
Seems simple enough ... but I'm lost.
Six fields (I suspect):
Beginning Date - Date the process starts
Assigned To - Name of person the process is initially assigned to
Date Assigned - Date this person was assigned the process
Transferred To - Name of person the process was handed off to
Date Transferred - Date the process was transferred to this new person
Ending Date - Date process complete
The calculation piece (number of days in the process) is not a problem. But I'm not sure how I can use the Transferred To field and Date Transferred field to efficiently capture multiple hand offs, or even if I'm on the right track. Appreciate the help and direction.