If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Access > Create a look up from current database

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-11-12, 12:31
bikerbehaviorist bikerbehaviorist is offline
Registered User
 
Join Date: Feb 2012
Posts: 2
Create a look up from current database

I have inherited a database for a car show. It creates many reports including voting for the various categories and is useful for that and other purposes. What is a real pain is that each year the car show occurs it is necessary to re-enter the entrants. I would like to use the information from the previous year(s) to autofill or look up this information so I am not spending hours doing entry. I have some limited database experience with filemaker and took an access class years ago.... Any help is extremely appreciated!!
Reply With Quote
  #2 (permalink)  
Old 02-11-12, 12:36
Sinndho Sinndho is offline
Registered User
 
Join Date: Mar 2009
Posts: 3,446
I don't see any reason why you would not be able to retrieve the data previously entered. However, without any kind of information about the database, it's structures and its tables, it is almost impossible to provide a sensible answer.
__________________
Have a nice day!
Reply With Quote
  #3 (permalink)  
Old 02-11-12, 12:46
healdem healdem is offline
Jaded Developer
 
Join Date: Nov 2004
Location: out on a limb
Posts: 9,250
if its the same, then there should be nothing stopping you copying that data to a new instance of the show
whether you can do that as an individual SQL query, or multiple queries or a VBA procedure or macros is up to you and the actual design of the system.

although it may indeed be a pain havign retype the same stuff each time there are several ways of looking at it
retyping means you only put in what you need to, there are less risks of redundant old data carrying over (eg where a company may have changed their name, web page, or may have special offer stuff this year
it means there is someone specifically responsible for what is on the system
there is no need to proof read each and every advert. its a lot tougher to spot small mistakes in a mass of data. especially if you have a lot of it go through, the human eye / brain combination is excellent at filling in the gaps or translating what you see into what you expect to see.
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
Reply With Quote
  #4 (permalink)  
Old 02-12-12, 11:59
Missinglinq Missinglinq is offline
Registered User
 
Join Date: Jun 2005
Location: Richmond, Virginia USA
Posts: 1,702
As Sinndho said, without any kind of information about the structures and Tables, it's very difficult to advise you on this matter. But for this kind of thing you should have at least two Tables which are linked in a One-to-Many relationship.

The Main Table, or One side of the relationship, would have all of the information on the entrants that you're concerned about having to re-enter each year, things like EntrantID (as Primary Key), name, address, phone number, etc. In other words, the static data.

The Secondary Table, or Many side of the relationship, would contain Fields such as EntrantID (as Foreign Key), date of show, and any other data which changes from year to year.

You would then display the Main Table data in a Main Form, and add a Subform to this Form that is based on the Secondary Table. The two Forms would be linked using the EntrantID, and as you move from one entrant to another the Records in the Subform would change, only displaying those related to the current Main Form Record.

Linq ;0)>
__________________
Hope this helps!

The Devil's in the Details!!

All posts/responses based on Access 2000/2003
Reply With Quote
  #5 (permalink)  
Old 02-12-12, 23:56
bikerbehaviorist bikerbehaviorist is offline
Registered User
 
Join Date: Feb 2012
Posts: 2
maybe more simple

I use a form to enter info into the data base. Some of the fields have drop down menus that allow me to choose from a given set of values. Can I do the same thing to the last name field and have it fill the last and first name and perhaps car info into the form. I see I can change the field into a drop down via design view, but how do I then link to the list I want it to use?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On