Transposing Cross Table Query

I

Ian

Does anyone have a method of transposing a cross table
query. It should be possible by building a SQL module.
However, this is beyond my programing capabilities. Does
anyone have one built or point me in the correct
direction to obtain the skills to build it myself.
Thanks
 
D

Duane Hookom

A crosstab is an un-normalized view of data. The first step to transpose
would be to normalize. This can be done with a UNION query. You can then
create another crosstab based on the union query.
 

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