Left Join

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

Guest

Hi,

I have two tables that I have joined together using a left outer join, is it
possible to show in the Cell where there is no match on the join some
specific text.

Thanks
 
Use Nz() to supply the value to use for null, e.g.:

SELECT Nz(MyOuterTable.Field1, "Nuffin here") AS MyFudge ...
 

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