changing of a report

dragon

New Member
Joined
Dec 11, 2002
Messages
1
which Formula do I have to choose to build up following Report from following table

table
cust__G/F____cost
a______g______10
b______f______20
c______g______10
c______f______30


Report

cust___G____F
a_____10____0
b______0___20
c_____10___30

Would be great if you could help me.

Cheers Kai
This message was edited by dragon on 2002-12-17 03:05
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
How about a crosstab query? My fields are named CUST, GF, and COST, respectively. My table name is tbl121702 -- change these names to yours.

TRANSFORM Nz(Sum([COST]),0) AS [TOTAL COST]
SELECT tbl121702.Cust
FROM tbl121702
GROUP BY tbl121702.Cust
PIVOT tbl121702.GF;

Hope this helps,

Russell
 
Upvote 0

Forum statistics

Threads
1,221,499
Messages
6,160,164
Members
451,628
Latest member
Bale626

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top