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

Selecting records on NULLs 1

Status
Not open for further replies.

markajem

Programmer
Dec 20, 2001
564
US


V8.5

My mind is just not functioning correctly today.

Trying to create a selection formula that will pull only records based on a NULL value from two different fields in the same record working only with one table.

Example: Pull records that this field GP_Ord is Null or this field RB_ord is Null.

Thanks for your help


 
Use a record selection formula like:

isnull({table.GP_Ord}) or
isnull({table.RB_ord})

-LB
 


Thanks LB. I was trying to advoid using an "OR" in my selection formula. I just don't trust it. But it works though.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top