Duane,
Is that technique the same as creating multiple crosstab queries (one for
each field) and then inner joining them on the grouping field?
John
"Duane Hookom" <duanehookom@NO_SPAMhotmail.com> wrote in message
news:E8F56B5F-20AE-413E-A1AB-(E-Mail Removed)...
> There is an FAQ that describes how to do this at
> http://www.tek-tips.com/faqs.cfm?fid=4524. You may need to normalize your
> table prior to creating the crosstab.
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "John S. Ford, MD" wrote:
>
> > I understand the basic concept of crosstab queries and can create one in
> > Access 2000 (using the crosstab wizard). What I'm wondering is if it's
> > possible to create such a query using more than one fields. For
example,
> > suppose I have table tblEmployeeReviews with fields ReviewIDNum, Name,
> > Efficiency (Good, Fair, Bad) and Speed (Good, Fair, Bad):
> >
> > 1 John Good Fair
> > 2 John Bad Fair
> > 3 Steven Fair Good
> > 4 John Good Bad
> > 5 Steven Bad Good
> >
> > I want to create a crosstab query whose result looks like this:
> >
> > Name EfficiencyTotal EfficiencyGood EfficiencyFair
> > EfficiencyBad SpeedTotal SpeedGood SpeedFair SpeedBad
> > John 3 1 0
> > 2 3 0 2
> > 1
> > Steven 2 0 1
> > 1 2 2 0
> > 0
> >
> > The crosstab query wizard appears to only allow one to use one field at
a
> > time (eg. Efficiency). Is there to use two or more?
> >
> > John
> >
> >
> >