D
Dan
is there a way to make your data in a query go down
instead of across
field1 field2 field3
field1
field2
field3
instead of across
field1 field2 field3
field1
field2
field3
-----Original Message-----
Use a union query. The SQL might look something like this:
SELECT
[Your Table].[field1] AS [Your Field]
FROM
[Your Table]
UNION ALL SELECT
[Your Table].[field2] AS [Your Field]
FROM
[Your Table]
UNION ALL SELECT
[Your Table].[field3] AS [Your Field]
FROM
[Your Table]
Check the "UNION Operation" help topic for more information.
is there a way to make your data in a query go down
instead of across
field1 field2 field3
field1
field2
field3
.
Dan said:i changed my query to an sql but that didnt seem to do it
i only have one record in my database the data is still
going across the top i tried putting Union in front of my
data but it doesnt work ? im confused-----Original Message-----
Use a union query. The SQL might look something like this:
SELECT
[Your Table].[field1] AS [Your Field]
FROM
[Your Table]
UNION ALL SELECT
[Your Table].[field2] AS [Your Field]
FROM
[Your Table]
UNION ALL SELECT
[Your Table].[field3] AS [Your Field]
FROM
[Your Table]
Check the "UNION Operation" help topic for more information.
is there a way to make your data in a query go down
instead of across
field1 field2 field3
field1
field2
field3
.