B
brian
Hello,
I posted a similiar question a few days ago but am still
having problems with it.
I have a form 'zzzzzz' that calls a report. The report
contains a subreport. I want a data columns visible
property to be turned on or off based on the
control 'chkbox' from the form.
Names of the forms/reports are as follows:
Form- zzzzzz
Subreport- subrptQuote
Report- rptQuote
I am currently trying the following and it doesn't work.
The on open event procedure is triggered when the main
report is opened.
Private Sub Report_Open(Cancel As Integer)
If Forms![zzzzzz]![chkPricing] = 1 Then
Me.[subrptQuote]!Reports![jd_ExtendedPrice].Visible =
False
End If
End Sub
chkPricing is a check box with a value = to 1 or 0
Thank You
I posted a similiar question a few days ago but am still
having problems with it.
I have a form 'zzzzzz' that calls a report. The report
contains a subreport. I want a data columns visible
property to be turned on or off based on the
control 'chkbox' from the form.
Names of the forms/reports are as follows:
Form- zzzzzz
Subreport- subrptQuote
Report- rptQuote
I am currently trying the following and it doesn't work.
The on open event procedure is triggered when the main
report is opened.
Private Sub Report_Open(Cancel As Integer)
If Forms![zzzzzz]![chkPricing] = 1 Then
Me.[subrptQuote]!Reports![jd_ExtendedPrice].Visible =
False
End If
End Sub
chkPricing is a check box with a value = to 1 or 0
Thank You