You can do it with a series of append queries.
INSERT INTO tblMyTable( e_p_date)
SELECT e_p_date3
FROM tblMyTable
WHERE e_p_date3 Is Not Null);
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"kidkosmo" <(E-Mail Removed)> wrote in message
news:47a509be-4275-43d2-b91a-(E-Mail Removed)...
> Hi, Gang,
>
> I'm a bit perplexed with how I can perform this task. I have a set of
> data that is arranged such as this:
>
> Function e_p_date1 e_p_date2 e_p_date3
> Training1 1/1/2010 1/2/2010 1/3/2010
> Training2 1/4/2010 [null] [null]
>
> I want to turn that into something more like below in order to add
> into my crosstab query to calculate the number of events per function
> (currently the crosstab is only calculating one training).
>
> Function e_p_date
> Training1 1/1/2010
> Training1 1/2/2010
> Training1 1/3/2010
> Training2 1/4/2010
>
> Any help would be greatly appreciated.