DomZ
07-04-2003, 08:41 AM
Sup again,
How is this possible:
I have a table and I want the user to use informations from 2 other tables...
My relationship and layout is as is as follow:
TblClients:
ClientID
CustomerID (PK)
Address
ShippingAddress
City
Province
Country
PostalCode
PhoneNumber
FaxNumber
Others
TblPieces:
PieceID (PK)
CustomerID
PartNumber
Dimension
BaseMetal
Fini
Thickness
Specification
Process
Line
Special
Price
Unit
Gage
Photo
TblPiecesTracking:
TrackingID
Date
CustomerID
PartNumber
Quantity
Weight
Relationship as follow:
1 to many from Clients to Pieces
What I want to do:
In TblPiecesTracking, Use CustomerID from TblClients(doable using Lookup Wizard) and When A user clicks on a Company Lets say XYZ, all the pieces from that Company is going to appear in the PartNumber Field
EDIT: What would be the WHERE value .. i though of this..?
WHERE (((tblPieces.CustomerID)=Tables!TblPiecesTracking! CustomerID))
Thanks again.
How is this possible:
I have a table and I want the user to use informations from 2 other tables...
My relationship and layout is as is as follow:
TblClients:
ClientID
CustomerID (PK)
Address
ShippingAddress
City
Province
Country
PostalCode
PhoneNumber
FaxNumber
Others
TblPieces:
PieceID (PK)
CustomerID
PartNumber
Dimension
BaseMetal
Fini
Thickness
Specification
Process
Line
Special
Price
Unit
Gage
Photo
TblPiecesTracking:
TrackingID
Date
CustomerID
PartNumber
Quantity
Weight
Relationship as follow:
1 to many from Clients to Pieces
What I want to do:
In TblPiecesTracking, Use CustomerID from TblClients(doable using Lookup Wizard) and When A user clicks on a Company Lets say XYZ, all the pieces from that Company is going to appear in the PartNumber Field
EDIT: What would be the WHERE value .. i though of this..?
WHERE (((tblPieces.CustomerID)=Tables!TblPiecesTracking! CustomerID))
Thanks again.