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

Selecting Null Value fields in record selection expertCRXI

Status
Not open for further replies.

lcutliffe

IS-IT--Management
Dec 1, 2006
30
US
I want to filter out the fields that have "no data" or null and display them in a report. What type of forumula do I need to identify the null field in record selection? Thanks
 
You probably want to test for blanks or nulls, so the syntax would be:

(
isnull({table.string}) or
trim({table.string}) = ""
)

For dates, try:
(
isnull({table.date}) or
{table.date) = date(0,0,0)
)

isnull({table.number}) //should be sufficient

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top