Let me define the problem a little better. I think it boils down to this...
My labels are being repeated on each page of my report. I am getting a total
of 884 pages in my Report and I should only have one page. I have all my
data calculated correctly now, using these types of functions:
=Sum(IIf([Advertiser]="All",Nz([SumOfQ308],0),0))
=Sum(IIf([Advertiser]="All",Nz([SumOfQ408],0),0))
I want to use a couple of Labels just above the areas where the calculations
are done and I want to use labels to the left of the area where the
calculations are done. The problem is that these labels keep getting
repeated over and over again. I actually want the labels to appear only
once!!
If someone knows how to handle this, please let me know.
Regards,
Ryan---
--
RyGuy
ryguy7272 said:
I just figured it out:
=Sum(IIf([Advertiser]="All",Nz([SumOfQ308],0),0))
One more question... How do I hide all records that don't match my
criteria? For instance, I only want to sum Advertisers if they are named
'All', 'East', and 'West'. How can I sum only these three, or rather do one
sum for each of these types of advertisers, and hide all others?
Thanks,
Ryan---
--
RyGuy
ryguy7272 said:
My field names are 'Advertiser', 'SumOfQ308', and 'SumOfQ408'. I am trying
to sum all values that are in the Advertiser field and named 'All'. Below is
what I thought would work, but it doesn't work.
=Sum(IIf([Advertiser]=[All],[SumOfQ308],0))
Right now I am prompted to enter a parameter value before the report runs;
that doesn't seem right.
I'd appreciate any help!
Thanks so much,
Ryan--