Query a Crosstab Query

J

Jerry Whittle

Yes. However as the number of columns can expand or contract on a crosstab,
you either need to know what fields that will be there for sure or use
something simple like:

SELECT qyrKurt_Crosstab.*
FROM qryKurt_Crosstab;
 
Top