Button With Dual Action

  • Thread starter Thread starter Charles Phillips
  • Start date Start date
C

Charles Phillips

Hello,
Is it possible to create a button that opens a report & a chart???
A report displays the data & the chart giving a graphical display of the
data...


Thank you,

Charles L. Phillips
 
Charles said:
Hello,
Is it possible to create a button that opens a report & a chart???
A report displays the data & the chart giving a graphical display of
the data...

Clicking a button runs code or a macro. There is no practical limit to how many
processes could be executed by that code or macro. One button click could open
every form and report in your file if you were so inclined and had adequate
memory for it.
 
Hello,
Is it possible to create a button that opens a report & a chart???
A report displays the data & the chart giving a graphical display of the
data...

Sure. Either put the chart *on the Report* (maybe on a second page);
or use VBA or a Macro in the button's Click event to open both.


John W. Vinson[MVP]
 
Back
Top