473,383 Members | 1,821 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

Access Relationship or Table issue

1
Here is my situation:

I am trying to create a database to keep track of RFQ'S (REQUEST FOR QUOTES) that we send to multiple different suppliers weekly. Each RFQ has part numbers (there can be 1 to infinity)in one RFQ. I want to keep track of the status of each part number. Basically, I would like for people to be able to come into the database, lookup a part number and see the status of this part number according to each supplier, so each RFQ (Since one RFQ can on be related to one supplier). On part number can be part of multiple RFQ's. But there is only one part number with the same supplier. Also each part number depending on the supplier has a certain status.


My issue:

I can't seem to find how to program the relationship, or even the tables to create this database. At first I had 2 table one for RFQ'S and one for Part Numbers. Each had a primary key (RFQ'S=RFQ ID and PART NUMBERS= Part number) and RFD ID field was in both tables as I had a one to many relationship with RFQ Id fields. BUT this did not permit me to have multiple part numbers since part number field was a primary key. Also since each part number has a specific status depending on the supplier (RFQ) associated to it, this didn't work.

Please help me!

Thank you in advance,

Emma
Nov 8 '17 #1

✓ answered by PhilOfWalton

Emma may I suggest

A table of Suppliers with SupplierID, SupplierName etc

A table of SupplierPartNos with SupplierPartNoID, SupplierPartNoDescription and SupplierID.

Now your RFQ table should have RFQID, RFQDate and SupplierID.

Then you need a table to link the RFQ with the SupplierPartNo So RFQID and SupplierPartNoID.

Basically have a form to create the RFQ, with a Combo Box to select the supplier. Having selected the supplier, open up a list box listing all the part nos and descriptions from that supplier and pick the ones you want for the RFQ.

That should be a starter for you.

I have a feeling that you may need an additional table listing Your part Nos & Description to find the appropriate supplier.

Phil

1 1840
PhilOfWalton
1,430 Expert 1GB
Emma may I suggest

A table of Suppliers with SupplierID, SupplierName etc

A table of SupplierPartNos with SupplierPartNoID, SupplierPartNoDescription and SupplierID.

Now your RFQ table should have RFQID, RFQDate and SupplierID.

Then you need a table to link the RFQ with the SupplierPartNo So RFQID and SupplierPartNoID.

Basically have a form to create the RFQ, with a Combo Box to select the supplier. Having selected the supplier, open up a list box listing all the part nos and descriptions from that supplier and pick the ones you want for the RFQ.

That should be a starter for you.

I have a feeling that you may need an additional table listing Your part Nos & Description to find the appropriate supplier.

Phil
Nov 9 '17 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: tabonni | last post by:
Hi All I connected MS Exchange Server to MS Access database using Access link table function. I can open the database table and see the fields and data inside the link table. However, the table...
8
by: delete table with Visual Basic 6 | last post by:
Dear developer, I have an error message when I try to delete or drop Microsoft Access XP table with ADOX in Visual Basic 6. I use the ADOX.Catalog and ADOX.table to create and delete or drop table...
4
by: KMEscherich | last post by:
Version of Access = 2003 Hi there, is there a way to capture data using TERADATA SQL Assistant and import a portion of this database table into a Microsoft Access database table??? I currently...
7
by: AkosBeres | last post by:
I’m in the process of setting a sample local Access table called "Fruits" to store data in the following sample fileds: Week Amount Description Version or sequence The data will be loaded into...
2
by: | last post by:
Hi all, I have an asp.net 2.0 website that accesses a locally hosted web service. This works fine on servers that are connected to our network. However, I am having a problem with a laptop...
2
by: KMEscherich | last post by:
Hi there, am wondering if there is a way to do the following: I developed a Crystal report that runs against a Clarity table envrionment. The report runs fine. I have been asked to run my...
2
by: George Yar | last post by:
Re: How to show changes in open Access 2003 Table in VB I have a form to add a new record to my Access Database table. This is a code: Private Sub btnAdd_Click() Dim dbExpenses As...
1
by: Monique | last post by:
I am a new Access user and have taught myself through youtube videos and professional blogs like this one. The database I have created is working wonderfully, and is doing everything that I ask of...
2
by: Paul Howarth | last post by:
My Access 2010 database is suddenly not appending Named Ranges from Excel into and Existing Access 2010 Table. I have not written any code. I simply right-click the Table-Import-Excel and follow...
4
by: nooblang | last post by:
Hi, I have ms access database with two tables connected by "ID Number" as primary using a one-to-many relationship. My question is how can i create a code or something like that , that would...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.