ibiubu Posted May 5, 2002 Posted May 5, 2002 A standard If statemet for a typical field is easy: If(Field1 > 0, "Yes","") But is there a way to do the same thing to check if there is a graphic pasted into a field? If I do the standard If statement as above, it does not work. Anyone have any thoughts? LR
Ocean West Posted May 6, 2002 Posted May 6, 2002 I believe the isEmpty statement will determine if a container field has contents.
Vaughan Posted May 6, 2002 Posted May 6, 2002 Yes, the IsEmpty[] function works for container fields as well and text and number fields, global fields, date fields, time fields...
Keith M. Davie Posted May 7, 2002 Posted May 7, 2002 For some reason I'm under the impression that most developers would prefer to use a case in lieu of an if in most situations.
Vaughan Posted May 7, 2002 Posted May 7, 2002 containerField="" This isn't reliable because you are comparing the container to a text string ("" is text). It sometimes works, sometimes not. IsEmpty() is the only robust, reliable way to do it.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now