quarter problems?!?

G

Guest

Let me try to explain my problem.
I just create cross tab and he shows all expenses quarterly.
I create report based on inputs from that cross tab.
All inputs were, not correct ones, just for testing.
When delete data's Access show message like Microsoft Jet database engine
does not recognize "[qtr1]" as valid field name or expression..
I know why is that happening..But is there any way to override that problem
except to enter blank data and to move him by code from reports?
Maybe to define Column Heading in query with names Q1,Q2,Q3,Q4 and to define
those fields? Suggestion or solution will be highly appreciate..
THX
 
M

Marshall Barton

SoulReaver said:
I just create cross tab and he shows all expenses quarterly.
I create report based on inputs from that cross tab.
All inputs were, not correct ones, just for testing.
When delete data's Access show message like Microsoft Jet database engine
does not recognize "[qtr1]" as valid field name or expression..
I know why is that happening..But is there any way to override that problem
except to enter blank data and to move him by code from reports?
Maybe to define Column Heading in query with names Q1,Q2,Q3,Q4 and to define
those fields?


Yes, set the crosstab query's ColumnHeadings property to
Q1,Q2,Q3,Q4

In SQL, it would be:
...
PIVOT ... IN("Q1","Q2","Q3","Q4")
 

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