Rows to Columns

G

Guest

I have a query that looks like this:

Customer Order # Item Price
A 100 Blocks $10.00
A 100 Cars $15.00
A 100 Toys $5.00

and I want it to look like this:

Customer Order # Item 1 Price 1 Item 2 Price 2 Item 3
Price 3
A 100 Blocks $10.00 Cars $15.00 Toys
$5.00

Can this be done?

Thanks
c
 
D

Duane Hookom

You can use a report with a multi-column subreport to get it "to look like
this". A crosstab would require much more work since you would need to
define the order/sequence and return multiple values.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Data produced is incorrect 1
intervals 2
Formulae Help 6
adding up columns in queries? 3
AVG Query Question 3
Sliding scale for Mark Up 0
Create rows from a lookup 3
Need help creating a running subtotal 2

Top