G
Guest
How may I limit a report to on page length?
Rick B said:Not sure what you mean. If you have 100 items and they won't fit on one
page, what do you want to do? Do you want to just eliminate the ones that
don't fit?
More details please.
Phil Smith said:Here is an idea:
Make your report just header information. No detail.
Put all of your data on a subreport, drivien by a subquery, which as a
TOP 45 limitation.
One thing to note about TOP.
If your results were
A,B,B,C,C,C,C,D,E
on a TOP 5, you would actually get 7 records returned, because the 4th
through 7th are the exact same value. Find some way to make sure that
the results are unique, to avoid this problem.
wem3rd said:Hmmm, I will give that a try. Every recorod in each group is a unique
date, so it should work. I will let you know - thanks.
wem3rd