Can you make a cross tab query into a table?

A

Akilah

I want to make my cross tab query fields into fields for a table. How can I
do this with out having to put each one in manually?

Thanks
 
O

Ofer

Create a CreateTable query that is based on the cross tab query

SELECT CrossTabQueryName.* INTO TableName
FROM CrossTabQueryName
 
Top