I am tryingto hide a label on a report if a field is $0.00, I tired the following but itis not working
I have putit in the detail of the report where the field and label is in the eventformat.
Private SubDetail_Format(Cancel As Integer, FormatCount As Integer)
IfNz(Me.FinancedPrice, " ") = " " Then Me.Label163.Visible =False
End If
End Sub
not sure what I am doing wrong. I am wanting it to hide three different labels but not sure what to do .
the labels are label163 label 101 label 102 the field on the report is financedprice and the default value is $0.00
Thank you