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

Using Empty or Null values in condition macro

Status
Not open for further replies.

Moss100

Technical User
Aug 10, 2004
586
GB
Hello I have a condition macro that looks up a value in a combobox row (text value).

I would like the combo to do one action if the field contains a value and do another action if the field is null (or empty)

I have used the following:

[combo38].[column](9)is null

[combo38].[column](9)is not null

But this does not seem to have the desired result.

Any help gratefully received

Regards

Mark
 
What about this ?
Trim([combo38].[column](9) & "") = ""

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top