Hi,
I have a label called "Duplicate". I would like my report to print this label only if necessary. It's based on a field called "Printed" in my underlying table. If the value in this field is greater than or equal to 1 then DUPLICATE should print, otherwise nothing.
I tried this code:
If Me.Printed >= 1 Then
lblDuplicate.Visible = True
Else: lblDuplicate.Visible = False
End If
I think I'm missing something. It could not get the value in the PRINTED field.
Thanks in advance.
TN
I have a label called "Duplicate". I would like my report to print this label only if necessary. It's based on a field called "Printed" in my underlying table. If the value in this field is greater than or equal to 1 then DUPLICATE should print, otherwise nothing.
I tried this code:
If Me.Printed >= 1 Then
lblDuplicate.Visible = True
Else: lblDuplicate.Visible = False
End If
I think I'm missing something. It could not get the value in the PRINTED field.
Thanks in advance.
TN