L
lynda
I want to use a crosstab query qryA as a base to make a
table tblA. The corsstab query qryA accepts parameters so
that the number of column headings is not fixed. I use
make-table query to make the table. The first time I use
the make-table query is ok, but later on, it always gives
me error message: Table "tblA" already exits.
My make-table query is this:
SELECT qryA.* INTO tblA
FROM qryA;
I am thinking this is caused by "Select qryA.*", but my
column headings are different each time, how could I make
a table based on this query? Thanks for your help!
Best Regards
Lynda
table tblA. The corsstab query qryA accepts parameters so
that the number of column headings is not fixed. I use
make-table query to make the table. The first time I use
the make-table query is ok, but later on, it always gives
me error message: Table "tblA" already exits.
My make-table query is this:
SELECT qryA.* INTO tblA
FROM qryA;
I am thinking this is caused by "Select qryA.*", but my
column headings are different each time, how could I make
a table based on this query? Thanks for your help!
Best Regards
Lynda