Ok I have a table that looks like this.
Name Row Section Price
Ryan A 12 $10
Ryan b 12 $10
donna C 5 $20
donna g 6 $40
I need to creat a query that will group by name (keeping only one record) and combine the other fields so I can have all information on one line...
Name Row Section SumPrice
Ryan A,b 12,12 SUM $20 or
Name Row1 Row2 Sec1 Sec2 SumPrice
Ryan A B 12 12 Sum$20
Can this be done???
Name Row Section Price
Ryan A 12 $10
Ryan b 12 $10
donna C 5 $20
donna g 6 $40
I need to creat a query that will group by name (keeping only one record) and combine the other fields so I can have all information on one line...
Name Row Section SumPrice
Ryan A,b 12,12 SUM $20 or
Name Row1 Row2 Sec1 Sec2 SumPrice
Ryan A B 12 12 Sum$20
Can this be done???