Help with query

J

James A

I have two Tables:


(table 1)Projects:

[Jobno] [JoBName]
1 First project
2 Second project
3 Third project
4 Forth project


(table 2)Invoices:


[InvoiceNo] [Jobno]
1 1
2 1
3 1




I want to be able to write a query that will pickup all the jobs that
have NOT been
invoiced.


Eg, the result for the query should be:


[Jobno] [JoBName]
2 Second project
3 Third project
4 Forth project



I'm able to create a query easily enough that lists only the jobs that
HAVE been invoiced, the join constraints see to that.

I'm not sure if i'm supposed to create a nested query or change the
join constraints, I have done the latter without success.

Looking at this problem it seems to be fairly straightforward query.

Thanks for the help.

James
 
J

JulieD

Hi James

in the queries section click on the New button and have a look at the
unmatched queries wizard - this is designed to do what you want.

if its not there, post back as there is another way to do it also.

cheers
JulieD
 
J

James A

JulieD said:
Hi James

in the queries section click on the New button and have a look at the
unmatched queries wizard - this is designed to do what you want.

if its not there, post back as there is another way to do it also.

cheers
JulieD


Thank you julie, I had previously searched around in help for some
period of time, didn't think of trying the wizard.

so, so easy !
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

How to query 5
Is this Query possible 4
Repeating data in Rows 4
VB.NET Datasets 0
Updateable Query 3
Select Query with an IIf 2
query 2
Please help with a Query 10

Top