D
Don
I have popup form from the switchboard that allows that user to choose
a query filter to base their report on. I want to add a subtitle field
whose caption updates to the report filter on format.
However, after the report opens then the filter of the report is like
this:
(((([Timber Sales Tracking Table].PreInventoryAnswer)="Yes") AND
(([Timber Sales Tracking Table].InventoryAnswer)="No")))
I could use that as the subtitle but the user wouldn't know what it
means. I was also thinking that I could say:
If Me!.Filter = "(((([Timber Sales Tracking
Table].PreInventoryAnswer)="Yes") AND (([Timber Sales Tracking
Table].InventoryAnswer)="No")))" Then
Me![Subtitle].Caption = "Awaiting Cruise Report"
I really don't want to build a statement in the report VBA for all of
the queries though.
Any ideas?
a query filter to base their report on. I want to add a subtitle field
whose caption updates to the report filter on format.
However, after the report opens then the filter of the report is like
this:
(((([Timber Sales Tracking Table].PreInventoryAnswer)="Yes") AND
(([Timber Sales Tracking Table].InventoryAnswer)="No")))
I could use that as the subtitle but the user wouldn't know what it
means. I was also thinking that I could say:
If Me!.Filter = "(((([Timber Sales Tracking
Table].PreInventoryAnswer)="Yes") AND (([Timber Sales Tracking
Table].InventoryAnswer)="No")))" Then
Me![Subtitle].Caption = "Awaiting Cruise Report"
I really don't want to build a statement in the report VBA for all of
the queries though.
Any ideas?