make a crosstab query'ed report automaticly add new columns?

  • Thread starter Thread starter James
  • Start date Start date
J

James

anyone know how to make a crosstab query'ed report automaticly add new
columns?
 
In the SQL statement add your column list like this --
PIVOT [YourTable].[YourField] In (1,2,3,4,5,6,7,8,9,10);
 
how to have it automaticly add them to a report tho if a new column apears
in the query...

KARL DEWEY said:
In the SQL statement add your column list like this --
PIVOT [YourTable].[YourField] In (1,2,3,4,5,6,7,8,9,10);

James said:
anyone know how to make a crosstab query'ed report automaticly add new
columns?
 
Prior planning. Add all that you will eventually have. Like days of the
month, months of the year, etc.

James said:
how to have it automaticly add them to a report tho if a new column apears
in the query...

KARL DEWEY said:
In the SQL statement add your column list like this --
PIVOT [YourTable].[YourField] In (1,2,3,4,5,6,7,8,9,10);

James said:
anyone know how to make a crosstab query'ed report automaticly add new
columns?
 
Or programatically deal with new controls (Createreportcontrol)

Pieter

KARL DEWEY said:
Prior planning. Add all that you will eventually have. Like days of
the
month, months of the year, etc.

James said:
how to have it automaticly add them to a report tho if a new column
apears
in the query...

KARL DEWEY said:
In the SQL statement add your column list like this --
PIVOT [YourTable].[YourField] In (1,2,3,4,5,6,7,8,9,10);

:

anyone know how to make a crosstab query'ed report automaticly add new
columns?



--
 

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