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

How to check if a database field has no value at all?

Status
Not open for further replies.

Blamdude

Technical User
Joined
Jan 2, 2008
Messages
43
Location
US
I can access two fields in my database called status.ref and status.hat. They are free form fields in which you can type anything you want, numbers, text etc.

If I have a new invoice opened and I never put anything into either one of those fields then Length({status.refno}) and Length({status.hat}) returns nothing at all. Not even a zero. Once I put any text into the fields I get a value returned using Length as expected. If I clear out the fields then I get a value of zero when using Length. Somehow the field doesn't even really exist unless I put something into it.

How do I check if there is no value at all? I need to check for this condition so I can properly calculate the amount owed by the customer.

Any questions by all means ask.

Thank you all very much,

dave
 
use IsNull({TABLE.FIELD})
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top