Oct 20, 2003 #1 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.
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.
Oct 20, 2003 #2 MJRBIM MIS May 30, 2003 1,579 CA RECORD SELECTION FORMULA IsNotNull {Table.THREE} AND {Table.THREE} > "" Upvote 0 Downvote
Oct 20, 2003 #3 lbass Technical User Feb 9, 2002 32,816 US Slight change: not isnull({table.three}) and trim({table.three}) <> "" -LB Upvote 0 Downvote