create a chart from a query in report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a chart from a query & inserted into a report.
when report opens I am asked for query select (which is correct) report
table is displayed but chart is blank?
what have i missed?
 
"I am asked" sounds like a parameter prompt query. You should use a
reference to a control on a report rather than the prompt.

Are there any values in your Link Master/Child properties?
 
Link Master/Child properties?
(Novice here)

Duane Hookom said:
"I am asked" sounds like a parameter prompt query. You should use a
reference to a control on a report rather than the prompt.

Are there any values in your Link Master/Child properties?
 
The query is a select query. I now receive a error message that microsoft jet
data base does not recognise '(my select query name )' as a valid field name
or expression.
The query runs ok though.
I created the chart via chart wizard.
 
A chart control has several properties including: Row Source, Link Master
Fields, Link Child Fields. If you are having trouble with your chart, please
reply with the values of these properties.
 
Row source = TRANSFORM Sum([%]) AS [SumOf%] SELECT [Clock] FROM [Plan 5*
Query % chart] GROUP BY [Clock] PIVOT [PlanID];

Link fields are not a option as it is OLEUnbound
 
The Row Source is a crosstab query which requires you to enter the data
types of all parameters. Select Query->Parameters and enter your parameters
and data types.

I don't think I have seen a chart control that doesn't have Link
Master/Child properties.

--
Duane Hookom
MS Access MVP

gb_S49 said:
Row source = TRANSFORM Sum([%]) AS [SumOf%] SELECT [Clock] FROM [Plan 5*
Query % chart] GROUP BY [Clock] PIVOT [PlanID];

Link fields are not a option as it is OLEUnbound

Duane Hookom said:
A chart control has several properties including: Row Source, Link Master
Fields, Link Child Fields. If you are having trouble with your chart,
please
reply with the values of these properties.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top