I have a navigation form with various tabs on the top for topic areas. When a user clicks a topic they can browse the various reports contained in that table. A user browsing one topic would type a company ticker and have a drop down list for the available reports to view. When a user selects a date, the report is displayed within the navigation. I believe this is a simple task, but I could be wrong. I do not know how to link these fields so that the correct report is displayed.
In summary: A user selects a topic through the tabbed navigation and is presented with two fields, a combo box entry for "ticker" and a date drop down which displays the each record available for that ticker. When selecting a date, the report is displayed on the navigation form.
Thanks in advance.
EDIT:
I should add that I am currently producing the results by manually creating a report for each record. I simply copy one of my existing reports and change the filter so that it matches the ticker navigation button:
For example, topic = Quarterly Review. Ticker = ABC
(((QuarterlyReview.Ticker="ABC"))) And (QuarterlyReview.Quarter Is Not Null And QuarterlyReview.Quarter<>"")
As you can imagine, creating these reports manually is not ideal when the only change I make is the filter reference and provide a navigation button in the form to access it.
In summary: A user selects a topic through the tabbed navigation and is presented with two fields, a combo box entry for "ticker" and a date drop down which displays the each record available for that ticker. When selecting a date, the report is displayed on the navigation form.
Thanks in advance.
EDIT:
I should add that I am currently producing the results by manually creating a report for each record. I simply copy one of my existing reports and change the filter so that it matches the ticker navigation button:
For example, topic = Quarterly Review. Ticker = ABC
(((QuarterlyReview.Ticker="ABC"))) And (QuarterlyReview.Quarter Is Not Null And QuarterlyReview.Quarter<>"")
As you can imagine, creating these reports manually is not ideal when the only change I make is the filter reference and provide a navigation button in the form to access it.