Missing Iformation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a query that is picking up information from an imported Excel
spreadsheet.

Under my part code heading i have around 100 codes with no number showing
although they are present in the spreadsheet.

I am looking to set up a query to pick up only descriptions that do not have
a value entered under the part code.

What is the best way to do this????
 
Rob said:
I have a query that is picking up information from an imported Excel
spreadsheet.

Under my part code heading i have around 100 codes with no number showing
although they are present in the spreadsheet.

I am looking to set up a query to pick up only descriptions that do not
have
a value entered under the part code.

What is the best way to do this????

Depending on whether the information is truly missing (null) or merely empty
(""), you could try

SELECT Description from YourTable WHERE PartCode IS Null

or

SELECT Description from YourTable WHERE PartCode = ''

HTH;

Amy
 

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

Back
Top