Hi,
Not quite clear what the data looks like, but to "un-pivot" a table, in Jet,
you can use a sequence of UNION ALL :
SELECT key, #7/10/2006# As theDate, [7/10/06] As As TheEvent FROM myXTab
UNION ALL
SELECT key, #8/10/2006# , [8/10/06] FROM myXTab
UNION ALL
SELECT key, #9/10/2006# , [9/10/06] FROM myXTab
UNION ALL
...
Sure, you can add a WHERE clause, such as WHERE [7/10/06] NOT IS NULL, or
similar.
Hoping it may help,
Vanderghast, Access MVP
> I'm having trouble with a crosstab query which I need to transpose to the
> results of my initial query.
[quoted text clipped - 80 lines]
> that already has all as field names all of the possibilites under the
> Original queries FieldName
NJP - 10 Aug 2006 21:51 GMT
Michael - I knew my issue was data related, but did not realize I'd created
#Error fields in the results field (field to transform) for certain records -
it was a large dataset. I refined the expression to elinimate the errors,
and then the crosstab worked. Thanks for your effort on my behalf.

Signature
Nita J. Perez
> Hi,
>
[quoted text clipped - 99 lines]
> > that already has all as field names all of the possibilites under the
> > Original queries FieldName