473,405 Members | 2,354 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,405 software developers and data experts.

N00bie to access and need help with reusing data between tables andimplementing it.

Hi,

I'm currently designing a database for a construction co and learning
how to use access on the fly. I'm having a few problems with the re-
use of data if I link tables using relationships and enter the data
into one table it doesn't seem to show the data in the other table
which its linked to.

Example of Table setups

Table 1
ID
Job No
Project Name
Address
Phone
Fax
Sub Constractor Name
Date
Daily Date
Foreman
Client Contact
Contract Value

Table 2
MemoID
Reference
Details
Job No
Response
FCID
Client Contact
Reason for Sending
Date
Time
Date of Notification
Options
Project Name
Superintendent

Table 1 Job No is linked to Table 2 Job No and that displays since its
a drop down box link to table 1, however Project Name and Client
Contact from Table 1 is link to Table 2 Project Name and Client Contac
but the information doesn't flow into Table 2. I'm assuming that since
these tables are linked that information should auto flow from table1
to table2 but I must be wrong since it doesn't so can someone point me
in the right direction as to what i should do?

Dec 19 '07 #1
4 1400
On Dec 18, 6:37 pm, christopher.cat...@gmail.com wrote:
Hi,

I'm currently designing a database for a construction co and learning
how to use access on the fly. I'm having a few problems with the re-
use of data if I link tables using relationships and enter the data
into one table it doesn't seem to show the data in the other table
which its linked to.

Example of Table setups

Table 1
ID
Job No
Project Name
Address
Phone
Fax
Sub Constractor Name
Date
Daily Date
Foreman
Client Contact
Contract Value

Table 2
MemoID
Reference
Details
Job No
Response
FCID
Client Contact
Reason for Sending
Date
Time
Date of Notification
Options
Project Name
Superintendent

Table 1 Job No is linked to Table 2 Job No and that displays since its
a drop down box link to table 1, however Project Name and Client
Contact from Table 1 is link to Table 2 Project Name and Client Contac
but the information doesn't flow into Table 2. I'm assuming that since
these tables are linked that information should auto flow from table1
to table2 but I must be wrong since it doesn't so can someone point me
in the right direction as to what i should do?
Hi Christopher,
I think you have the wrong idea about tables in access. It is an easy
enough mistake, especially when you are learning on the fly. You will
want to take the duplicated information and either pick one table to
have it in and define a relationship or create a new table and relate
all three. I have some time and experience defining tables if you want
to get a hand.

Bill
Dec 19 '07 #2
On Dec 18, 6:37 pm, christopher.cat...@gmail.com wrote:
Hi,

I'm currently designing a database for a construction co and learning
how to use access on the fly. I'm having a few problems with the re-
use of data if I link tables using relationships and enter the data
into one table it doesn't seem to show the data in the other table
which its linked to.

Example of Table setups

Table 1
ID
Job No
Project Name
Address
Phone
Fax
Sub Constractor Name
Date
Daily Date
Foreman
Client Contact
Contract Value

Table 2
MemoID
Reference
Details
Job No
Response
FCID
Client Contact
Reason for Sending
Date
Time
Date of Notification
Options
Project Name
Superintendent

Table 1 Job No is linked to Table 2 Job No and that displays since its
a drop down box link to table 1, however Project Name and Client
Contact from Table 1 is link to Table 2 Project Name and Client Contac
but the information doesn't flow into Table 2. I'm assuming that since
these tables are linked that information should auto flow from table1
to table2 but I must be wrong since it doesn't so can someone point me
in the right direction as to what i should do?
You want to place Table 1 ID as a foreign key in table 2. Then access
can relate the two tables and you do not have to reuse the same
information in Table 2. To view info from both tables is a simple
querry. Hope that helps. Feel free to let me know

Bill
Dec 19 '07 #3
If you don't get the table design correct at the outset, you will
slowly descend into an ever deeper mire from which, in the end, you
will not emerge! Think of tables as being the container for individual
items. Try to define what items your project consists of. For example
jobs might be one, clients another, subcontractors a third. You then
connect these items using additional linking tables, tables which can
also hold information about that particular link. Doing it this way
allows you to show clients with more than one job, foremen with more
than one job or jobs with more than one foreman; ditto subcontractors.
In other words the items are only ever held once; if you find you are
holding the same items in more than one table, then warning signs
should start flashing that the table design needs fixing. I would
strongly recommend getting a book on database design prior to
expending lots of brain power creating forms, reports etc all of which
will be wasted if the underlying structure is flawed
Dec 19 '07 #4
On Dec 19, 9:58 am, anthony <anthony.marr...@gmail.comwrote:
If you don't get the table design correct at the outset, you will
slowly descend into an ever deeper mire from which, in the end, you
will not emerge! Think of tables as being the container for individual
items. Try to define what items your project consists of. For example
jobs might be one, clients another, subcontractors a third. You then
connect these items using additional linking tables, tables which can
also hold information about that particular link. Doing it this way
allows you to show clients with more than one job, foremen with more
than one job or jobs with more than one foreman; ditto subcontractors.
In other words the items are only ever held once; if you find you are
holding the same items in more than one table, then warning signs
should start flashing that the table design needs fixing. I would
strongly recommend getting a book on database design prior to
expending lots of brain power creating forms, reports etc all of which
will be wasted if the underlying structure is flawed
right you are anthony. I am available to help you with your table
design if you wish, Christopher.
Dec 19 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jon Ole Hedne | last post by:
My Access 2002-application need to work with tables from both Oracle and Access. To solve this, I want to run some querys on three views in Oracle and import the results into temporary...
29
by: Mark B | last post by:
We have an Access app (quite big) at www.orbisoft.com/download. We have had requests by potential users to have it converted to an SQL version for them since there corporate policy excludes them...
49
by: Yannick Turgeon | last post by:
Hello, We are in the process of examining our current main application. We have to do some major changes and, in the process, are questionning/validating the use of MS Access as front-end. The...
9
by: Alan Lane | last post by:
Hello world: Background: Yesterday, January 21, Doug Steele was kind enough to help me out on a Left Join problem. I was trying to return all stores and their Gross Adds for December, 2004...
5
by: B1ackwater | last post by:
We've fooled around with Access a bit, but only using the single-user store-bought version. It seems to be a good database - versatile and infinitely programmable - and can apparently be used as a...
4
by: Vanessa | last post by:
Hi there I am an Access developer, and I have written applications for a 30 telephone call center, using the standard multiuser jet engine, it all works fine, but I want to move our systems onto...
1
by: smaczylo | last post by:
Hello, I've recently been asked to work with Microsoft Access, and while I feel quite comfortable with Excel, I'm at a complete loss with databases. If someone could help me with this issue I'm...
3
by: bsagert | last post by:
I downloaded BeautifulSoup.py from http://www.crummy.com/software/BeautifulSoup/ and being a n00bie, I just placed it in my Windows c:\python25\lib\ file. When I type "import beautifulsoup" from...
10
by: Les Desser | last post by:
In article <fcebdacd-2bd8-4d07-93a8-8b69d3452f3e@s50g2000hsb.googlegroups.com>, The Frog <Mr.Frog.to.you@googlemail.comMon, 14 Apr 2008 00:45:10 writes Thank you for that. It was very...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.