Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ignoring null fields

Status
Not open for further replies.

FlyingCrane

Technical User
Jul 19, 2006
3
CA
Hi,

I have a table called TSRDatabase (mind the missing prefix conventions).
It contains 6 columns:
[Name], [T], [Date], [T_Link], [L], [L_Link]
[Name] is the primary key.

Is there a way I can display all data in [L] that does not contain NULL values? I would like to display all data in the [L] column (but no NULL values), as well as the corresponding [T], [T-Link], and [L-Link] values.

Is this possible?
Thanks.
Crane
 
You could make a query...

Pampers [afro]
Just back from holiday...
that may it explain it.
 
Create a new query. Add the TSRDatabase table to the design grid. Drag all fields that you wish to see onto the design grid row area. On the Criteria row of the L field, type the following expression:

Code:
[COLOR=blue]Is Not Null[/color]

To run the query, click the red exclamation mark on the toolbar [!]![/!] or Click Query>Run.

Hope this helps.

Tom

Live once die twice; live twice die once.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top