Jan 11, 2007 #1 glyrocks Technical User Nov 16, 2006 57 US I need to create a report that selects records only if 1 of any, say, 10 fields is blank/null. What is the syntax for null values? Thanks, dylan
I need to create a report that selects records only if 1 of any, say, 10 fields is blank/null. What is the syntax for null values? Thanks, dylan
Jan 11, 2007 Thread starter #2 glyrocks Technical User Nov 16, 2006 57 US Is "isNull" what I'm looking for? Upvote 0 Downvote
Jan 11, 2007 #3 lbass Technical User Feb 9, 2002 32,818 US Yes. Try the following as your record selection formula: isnull({table.field1}) or isnull({table.field2}) or isnull({table.field3}) //etc. -LB Upvote 0 Downvote
Yes. Try the following as your record selection formula: isnull({table.field1}) or isnull({table.field2}) or isnull({table.field3}) //etc. -LB