design view changes very slow

L

LAB

I am using a crosstab query to create a report, and the column headings are
labeled appropriately. when i try to add a field to the report in design
view or make any changes to the fields it is very slow.
 
J

John Spencer MVP

You can speed this up if you know all the names of the columns to be generated
by the PIVOT statement.

In the crosstab query, list the column names in the pivot clause. Something
like the following.

TRANSFORM ...
SELECT ...
FROM ...
WHERE ...
GROUP BY ...
HAVING ...
PIVOT SomeMonthNameField in ("January","February","March",...,"December")

If you can't work in the SQL view, then in the query's Column Headings
property enter the column names that are generated by the cross tab query.

John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
 

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

Top