Report Design Question

Parra

Well-known Member
Joined
Feb 21, 2002
Messages
752
I have a query that gives me

Account Name
Revenue
2002
2001

I need the report to be formatted like this:
2002 2001
Account Name Rev 2002 Rev 2001

Using the wizard the report it formats it like this:

Account Name 2002 Revenue
2001 Revenue.

How can I have it formatted like my first example???
Thanks
 

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)
Don't use the wizard! LOL

Its kind of hard to explain, really you just view the report in design view and arrange the fields like you want. You usually want to put your field labels in your report or page header, to keep them from repeating for every record.

Check this out, just view the report:

Report Example

HTH,
 
Upvote 0
I'll do as you recommend and use the design view.

I tried to open the file but was unable to. I'm using Access 97.

Thanks for all your help!
 
Upvote 0
Thank Corticus, Maybe you can help, I already designed the report and need the revenue generated by each client next to their name.

So in the detail I have 2 boxes, one that will give me the 02 data and the other 01. I created an if function but I don't think it is working.

=If([year]="2002",[SumOfREVENUE],0)

=If([year]="2001",[SumOfREVENUE],0)

What could be wrong. I really appreciate this. Thanks

Can I even use if functions?
 
Upvote 0
OK, I figured it out. It took some time, but I guess its the company's time and not mine. In case you are interested here is the formula:

=IIf([year]=2002,[SumOfREVENUE],"0")

The problem was, I had the text box name the same as "SumOfRevenue". So I was getting an ERROR message.
 
Upvote 0

Forum statistics

Threads
1,221,508
Messages
6,160,222
Members
451,631
Latest member
coffiajoseph

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