Access: Specific modification between two tables

  • Thread starter Thread starter ANSWER
  • Start date Start date
A

ANSWER

I have two tables with words.
First table has 2 fields: German, Croatian.
Second table has 2 fields: German, English.

First table in the German field miss attributes (der, die, das), (pl).
This attributes is only for nouns, not for vers...
Second table (German field) HAS that attributes, but this table is much
bigger then first table.
-Question:
How can I replace words(nouns) - just them - from table 2 to table 1 or add
attribute to table 1 some other way, but bewaring to not disorganize
(translation) of the
1-st table?

PS. if you know write mail for contact
Thanks!!!
 
I have two tables with words.
First table has 2 fields: German, Croatian.
Second table has 2 fields: German, English.

First table in the German field miss attributes (der, die, das), (pl).
This attributes is only for nouns, not for vers...
Second table (German field) HAS that attributes, but this table is much
bigger then first table.
-Question:
How can I replace words(nouns) - just them - from table 2 to table 1 or add
attribute to table 1 some other way, but bewaring to not disorganize
(translation) of the
1-st table?

If I understand correctly, you should be able to add the der/die/das
field to the first table; you could then create an Update query
joining the two tables by the German word, and updating the new
(empty) fields to the values from the second table.
 
Back
Top