Hi,
I am fairly new to Access and have inherited a database which I must manage in my new post
I have a report (Rpt_LargeLabel)that is based on a query (Qry_LargeLabel)
I have been asked to change a field (type) that prints on the report to a different name if it is for a certain customer, but it must leave the underlying type in the table as it was originally.
Is it possible to do this using vba ?
I have tried using the following on the on open and on activate events in the report but it has no effect
Private Sub Report_Activate()
If Me.customer = "Multek" Then
Me.TYPE = "TEST"
End If
Any help greatly appreciated
Many thanks
I am fairly new to Access and have inherited a database which I must manage in my new post
I have a report (Rpt_LargeLabel)that is based on a query (Qry_LargeLabel)
I have been asked to change a field (type) that prints on the report to a different name if it is for a certain customer, but it must leave the underlying type in the table as it was originally.
Is it possible to do this using vba ?
I have tried using the following on the on open and on activate events in the report but it has no effect
Private Sub Report_Activate()
If Me.customer = "Multek" Then
Me.TYPE = "TEST"
End If
Any help greatly appreciated
Many thanks