It is possible to create a multi-value crosstab. Search Google Groups with
the following search text:
multi value crosstab cartesian group:*access.queries* author:hookom

Signature
Duane Hookom
MS Access MVP
First of all, thank you again for the help. I think I'm heading in the right
direction now. I'm just running into a roadblock that I hope you can help me
with...
If I use this SQL, I get correct totals for the forecasted and actual days
for the employees listed:
TRANSFORM
Sum(IIf([FldName]="Forecast",[tblPrjTrkForecastedDays]![ProjForecastDays],[tblPrjTrkActualDays]![ProjActualDays])) AS [Value]
SELECT tblPrjTrkForecastedDays.ProjEmplID
FROM tblPrjTrkXtabColumns, tblPrjTrkForecastedDays INNER JOIN
tblPrjTrkActualDays ON tblPrjTrkForecastedDays.ProjEmplID =
tblPrjTrkActualDays.ProjEmplID
WHERE
(((tblPrjTrkForecastedDays.ProjForecastMonth)=DateSerial(Year(Date()),Month(Date()),1)
Or
(tblPrjTrkForecastedDays.ProjForecastMonth)=DateSerial(Year(Date()),Month(Date())+1,1)
Or
(tblPrjTrkForecastedDays.ProjForecastMonth)=DateSerial(Year(Date()),Month(Date())+2,1)))
GROUP BY tblPrjTrkForecastedDays.ProjEmplID
PIVOT [FldName] & [tblPrjTrkForecastedDays]![ProjForecastMonth];
When I change the relationship to a LEFT JOIN (because I want all the
records to show from the "forecast" table and any matching from the "actual"
table) I get the following error message:
"The SQL statement could not be executed because it contains ambiguous outer
joins. To force one of the joins to be performed first, create a separate
query that performs the first join and then include that query in your SQL
statement."
Any advice you can provide is greatly appreciated!

Signature
Thanks!
Mona-ABE
> It is possible to create a multi-value crosstab. Search Google Groups with
> the following search text:
[quoted text clipped - 56 lines]
> > insight you can provide! Maybe I need a createtable query...right now I
> > can't think clearly enough to figure it out!
Duane Hookom - 30 Jun 2006 14:34 GMT
Maybe try your joins in a previous or subsequent query.

Signature
Duane Hookom
MS Access MVP
> First of all, thank you again for the help. I think I'm heading in the
> right
[quoted text clipped - 101 lines]
>> > I
>> > can't think clearly enough to figure it out!