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 on Memo Field 1

Status
Not open for further replies.

woolade

Technical User
Nov 8, 2001
51
AU
I have recently upgraded to CR 10 from CR 8.5. The following formula suppressed records if the field {CL_CALL_LOGGING.PROBLEM_DESC} was blank in 8.5 but doesn't suppress them in CR 10;

IsNull({CL_CALL_LOGGING.PROBLEM_DESC})

The field is a memo field. Is anyone aware as to why this doesn't work in version 10?

Thanks

Adrian Woolman
 
Could be the convert null values to defualt is on.

Anyway, try:

(
isnull({CL_CALL_LOGGING.PROBLEM_DESC})
or
{CL_CALL_LOGGING.PROBLEM_DESC} = ""
)

-k
 
Thankyou synapsevampire, that worked.

AW
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top