rearrange data - kind of pivot table

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Is there a way to have a query that will from:

Class Topic Name
A English Marc
B Math Dan
C Math Lisa
A English Jhon
A Math Dave
B History Ling

Give a result of:

English Math History
A Marc Dave
Jhon
B Dan Ling
C Lisa

Many thanks,
Dan
 
Use a crosstab query, where:
- Class is the row heading;
- Topic is the column heading;
- Name is the value.

(Hopefully these are not the real field names, as Class and Name are both
reserved words.)
 
Thanks but that give me me a count or other aggregate result but I need a
list of value as per my example.
Any idea?
Thanks
 
Back
Top