UNION query is the answer to getting the data organized as you wish. Then
if you want to permanently save the changed data you can use an append or
make table query.
SELECT Field1, Field2
FROM TheTable
UNION ALL
SELECT Field1, Field3
FROM TheTable
UNION ALL
SELECT Field1, Field4
FROM TheTable
UNION ALL
SELECT Field1, Field5
FROM TheTable
Union queries cannot be built using the Design View , but must be built in
the SQL view.
You can build the first segment of the query in design view,
switch to SQL view,
add UNION ALL (or just UNION if you want to remove duplicate records),
copy the first segment,
paste it after the UNION ALL and modify it (changer field2 to field3) etc.

Signature
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
> Hello,
>
[quoted text clipped - 24 lines]
>
> Thanks