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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

select no record

Status
Not open for further replies.

3dthies

Programmer
Mar 12, 2003
77
DE
I have a database something like that:

Date One Two Three
2003/09/01 A B X
2003/09/02 S D D
2003/09/03 S S
2003/09/04 W W W
...
...
...
...

I want to display just the fields (Three) except the entry with no record.
 
RECORD SELECTION FORMULA

IsNotNull {Table.THREE} AND {Table.THREE} > ""
 
Slight change:

not isnull({table.three}) and
trim({table.three}) <> &quot;&quot;

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top