A
Andreas
In a form, in order to hide or show an item based on the value of a
variable, I do the following:
If [InvoiceCustDetails].[Discount] = 0 Then
Discount.Visible = False
Else
Discount.Visible = True
End If
In the report, it doesn't recognize my [Discount] variable. How should I
reference it?
variable, I do the following:
If [InvoiceCustDetails].[Discount] = 0 Then
Discount.Visible = False
Else
Discount.Visible = True
End If
In the report, it doesn't recognize my [Discount] variable. How should I
reference it?