Bill Bisco
Custom User Title
- Local time
- Today, 17:32
- Joined
- Mar 27, 2009
- Messages
- 92
In my database I have tblStations and tblProcesses. The Primary Key for tblStations is StationID. Every Station has many Processes.
However, there are two fields that link tblProcesses to tblStations. CurrentID and ProposedID. For example. I could have a form which displayed Station 1 with all the Processes that had StationID = CurrentID or another form that displayed Station 1 and all the Processes that had StationID = Proposed ID.
Sometimes the CurrentID will be the same as ProposedID and sometimes it won't.
What I want to do is in my form, display all the Processes associated with station with StationID=ProposedID, but also have a Field which denotes where the Process is Currently.
It would look something like this:
My mental issue in figuring out how to display information similar to the above is that my StationID is a Number. For Instance, the StationID for Station 1 LS is 1 not Station 1 LS.
I don't want to display data that looks like this:
Any help in lifting my mental block so that I can display this information the way I want to would be appreciated. 
Sincerely,
Bill
However, there are two fields that link tblProcesses to tblStations. CurrentID and ProposedID. For example. I could have a form which displayed Station 1 with all the Processes that had StationID = CurrentID or another form that displayed Station 1 and all the Processes that had StationID = Proposed ID.
Sometimes the CurrentID will be the same as ProposedID and sometimes it won't.
What I want to do is in my form, display all the Processes associated with station with StationID=ProposedID, but also have a Field which denotes where the Process is Currently.
It would look something like this:
Code:
Station Process Name Current Location Time
Station 1 LS Jumping Up Station 4 RS 0.5
Station 1 LS Jumping Down Station 1 LS 0.8
Station 1 LS Jumping Left Station 1 LS 0.6
Station 1 LS Jumping Right Station 2 LS 0.2
I don't want to display data that looks like this:
Code:
Station Process Name Current Location Time
Station 1 LS Jumping Up 8 0.5
Station 1 LS Jumping Down 1 0.8
Station 1 LS Jumping Left 1 0.6
Station 1 LS Jumping Right 3 0.2
Sincerely,
Bill