May 5, 200223 yr 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
May 6, 200223 yr Yes, the IsEmpty[] function works for container fields as well and text and number fields, global fields, date fields, time fields...
May 7, 200223 yr 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.
May 7, 200223 yr 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.
Create an account or sign in to comment