Oct 28, 2003 #1 shaleen7 MIS Jun 23, 2002 188 US I want to include any fields that are not null in my query. But the following syntax does not work: isnotnull({TABLE.DATE}) Any suggestions?
I want to include any fields that are not null in my query. But the following syntax does not work: isnotnull({TABLE.DATE}) Any suggestions?
Oct 28, 2003 #2 lbass Technical User Feb 9, 2002 32,816 US The correct syntax is: not isnull({table.date}) If this doesn't work, you could try: not (isnull({table.date})) or {table.date} <> date(0,0,0) -LB Upvote 0 Downvote
The correct syntax is: not isnull({table.date}) If this doesn't work, you could try: not (isnull({table.date})) or {table.date} <> date(0,0,0) -LB
Oct 28, 2003 #4 synapsevampire Programmer Mar 23, 2002 20,180 US If you want to remove ROWS (not fields) if a certain FIELD (column) is null, use Report->Edit Selection Formula->Record and place something like: not isnull({table.field}) If that field is NULL (not zero or blank), then the entire row will be eliminated. -k Upvote 0 Downvote
If you want to remove ROWS (not fields) if a certain FIELD (column) is null, use Report->Edit Selection Formula->Record and place something like: not isnull({table.field}) If that field is NULL (not zero or blank), then the entire row will be eliminated. -k