The SQL would be something like:
INSERT INTO Jobs (JobNumber)
SELECT DISTINCT JobNumber
FROM Files LEFT JOIN Jobs
ON Files.JobNumber = Jobs.JobNumber
WHERE Jobs.JobNumber IS NULL
If you're using the graphical query builder, you can change a query into an
Append query through the Query menu when the query's open in Design view.
I'd spend some time making sure you understand queries: they're a critical
building block for database applications.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Thanks for responding Douglas, I am somewhat new to this and I have never
> written an Append query, how do I tell Access that it is an Append query
[quoted text clipped - 40 lines]
>> > bring them up.
>> > How can I get my Jobs Table to know about the new Jobs/Files?
Rob Roy CC - 28 Oct 2007 19:55 GMT
Hi Douglas, Thank you, this did the trick! I wil definitely learn more about
Queries. Thanks
Rob
> The SQL would be something like:
>
[quoted text clipped - 54 lines]
> >> > bring them up.
> >> > How can I get my Jobs Table to know about the new Jobs/Files?