|
rdouglass -> RE: Blank Field Suppression (2/26/2008 8:51:48)
|
quote:
trim(FP_FieldVal(fp_rs,"Meijer")&"")) Looks like you have an extra paren in there. See it? The last one in that quote above? <%IF trim(FP_Field(fp_rs,"Meijer")&"") > "" THEN%> And I had an extra one in one of mine.[;)] Here's my revised version: <%IF trim(FP_Field(fp_rs,"Meijer")&"") > "" THEN%>$<%=FP_Field(fp_rs,"Meijer")%><%END IF%> quote:
Also, does this imply that there will only be something displayed if the field is not blank/null, without the need to have an else element? Yup, that's what it's supposed to do.
|
|
|
|