A
Al
Need to be able to turn a table where I have a b c d e f
fields in a table. I would like to have a b c as
d e f columns
rows a b c
example
system table1
state county service Units AvgDays AvgCost
NC wake 1 15 5.1 $123.00
system table2
state county service Units AvgDays AvgCost
NC wake 1 20 6.5 $100.00
final results
state county service table1.Units table2.Units
table1.AvgDays table2.AvgDays table1.AvgCost
table2.AvgCost
I already can do this in several queries using a union
query. I was wondering if anyone knew of another way?
al
fields in a table. I would like to have a b c as
d e f columns
rows a b c
example
system table1
state county service Units AvgDays AvgCost
NC wake 1 15 5.1 $123.00
system table2
state county service Units AvgDays AvgCost
NC wake 1 20 6.5 $100.00
final results
state county service table1.Units table2.Units
table1.AvgDays table2.AvgDays table1.AvgCost
table2.AvgCost
I already can do this in several queries using a union
query. I was wondering if anyone knew of another way?
al