CHARTS

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

Is there a way to create a chart in a report that uses
multiple fields from one record?
 
Bill:

Sure, use a query, or a select statement e.g. "Select CustomerID, Date,
OrderValue From tblOrders" as the Row Source for the chart. If you need to
tie the graph's selection criteria to the main report (i.e. the where
clause) then use the link master / link child properties of the graph object
to link it to the current record for the report.
 
Back
Top