E
ET Sherman
Since the ContractAmt field in your record source query is
bound to a control on the report you should leave it in
the record source.
Try using the Visible property of the ContractAmt field on
the report as shown below:
In the On Format event of the Detail section of the report
add this:
If [Forms]![YourFormName]![YourCheckBox] = False Then
Me![ContractAmt].Visible = False
Else
Me![ContractAmt].Visible = True
End If
Regards,
ET Sherman
bound to a control on the report you should leave it in
the record source.
Try using the Visible property of the ContractAmt field on
the report as shown below:
In the On Format event of the Detail section of the report
add this:
If [Forms]![YourFormName]![YourCheckBox] = False Then
Me![ContractAmt].Visible = False
Else
Me![ContractAmt].Visible = True
End If
Regards,
ET Sherman