Need help with hiding a field please!

I am trying to hide a field that is dependent on the values of two additional fields.

Field I am trying to hide is FIELD1. I would like to hide this field if FIELD 2 = “No” or is blank and if FIELD 3 has a date > 11/20/08.

I have tried to use the following formula in the Hide paragraph if formula is true, but it is not working and I am not sure what to do.

I am using this statement right now and it is not working:

(FIELD2 = “No” | FIELD2 = “”) & FIELD3 > [11/20/2008]

Any help is appreciated!!

Subject: Need help with hiding a field please!

Hi,

Haye you sure which your fields 2 and 3 have the right type and values?

Have you try this:

(FIELD2 = “No” & FIELD3 > [11/20/2008]) | (@trim(FIELD2) = “” & FIELD3 > [11/20/2008])

Regards,

Thierry