Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Merging Table Data 1

Status
Not open for further replies.

Hanss

Technical User
Feb 15, 2001
85
CH
I would appreciate if someone could point me in the right direction:

This is the data that I have in table1:

Field1 Field2 Field3
10 20 30
40 50 60

I would like a query or vba that merges the data into this:

Field1
10
20
30
40
50
60

Does anyone have any idea if this is possible with an access query?

hanss






 
What about this ?
SQL:
SELECT Field1 FROM table1
UNION SELECT Field2 FROM table1
UNION SELECT Field3 FROM table1

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Thank you VERY much for pointing me in the right direction!

hanss
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top