>Sorry, I expressed my problem bad.
>Now I changed the structure to present better my problem.
[quoted text clipped - 20 lines]
>
>lfd_nr is a counter in the first Table. Id is a counter in the second table
By "counter" I presume you mean Autonumber?
>Now I would like to insert all tasks of the first
>person (Lfd_nr=1) from the second table in this table
>for the second person (Lfd_nr=2).
Create an Append query based on the second table, using the second table
(again) as the output table:
INSERT INTO [Second Table] ([Field1], [Lfd_nr])
SELECT [Second Table].[Field1], (2)
FROM [Second table] WHERE [Lfd_nr] = 2;
It's not clear to me how you'll determine which record to copy *from* and what
Lfd_nr you want to insert.
>Further I would like to insert all task times from the
>tasks of the first persone (tasks 1,2,3) in the third
>table for the second person. The problem ist that
>inserting tasks in the second table the new records get
>new ID-numbers and these must be in the third table corresponding to
>to the id-numbers of the second table.
Again, an append query run after the first query has completed.

Signature
John W. Vinson [MVP]