"Access101" wrote:
> To get this to work, I had to use the following type of join: "Only include
> rows where the joined fields from both tables are equal."
>
> 1. Create these two simple tables with these fields
>
> ONE - OneID, Item, AutoFill
> MANY - ManyID, OneID
>
> 2. Add a couple records to the table named ONE
> 3. Then put this correspnding SQL code into the grid and run it:
>
> SELECT Many.ManyID, Many.OneID, One.Item, One.AutoFill
> FROM One INNER JOIN Many ON One.OneID = Many.OneID;
>
> 4. When it comes up, put a number of an existing record (probably a 1) into
> the OneID field, it should populate.
>
> Let me know if it works.
>
> Thanks,
> Michael
>
>
>
>
>
>
>
>
> "wem3rd" wrote:
>
> > I have tried every combination of joins and definitions in the use of the
> > Auto-Fill select query without complete success. The query Auto-Fills fields
> > properly, but when it closes, the primary (imported) fields are not updated
> > while the other new data inputed is.
> >
> > I have followed the HELP directions for Creating an Auto-Lookup Query to the
> > letter (many times) and cannot find what I am missing. I tried re-creating
> > the Northwind example with the same negative results upon updating.
> >
> > Is there a key or switch somewhere that needs attention?
> >
> > wem3rd
> >
Michael,
I now have the join correctly assigned and have reworked the database a bit.
Not the design was good design! The added fields now update properly.
Thanks so much.
wem3rd
|