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

isnull formula

Status
Not open for further replies.

fhurmuzlu

Programmer
Nov 16, 2004
52
US
I have two fields

Division and incidents

Divison incidents
northeast 20
southeast 30
(Blank) 10

what is the formula if Divison shows blank or null but there is incidents value .I want do not show the incidents value if division is no value o, blank or null.
 
possibly something like this:
Not IsNull({division})
in your selection statement.


 
Actually, if there's a possibility that there may be a value that is one or more spaces in the field instead of null, you'll do this:

Not IsNull({division}) and Ltrim(Rtrim({division})) <> ""

NOTE: When working with Nulls, you ALWAYS check for Null FIRST!

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top