> I want to test if a memo field is empty in access.
>
> I tried this :
>
> <CFIF reponse_critique IS "">...
>
> or this <CFIF len("reponse_critique") LT 1> ...
>
> but with no success.
Take the quotes from the Len, so it should be len(reponse_critique)
Or, why do check it in SQL - if you're only looking for the fields with a
blank memo field, then;
select myFields
from myTable
where myMemo is NULL or Len(Trim(myMemo))=0
HTH
Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133
"Websites for the real world"
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**********************************************************************
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.