I'm using CR 2008 and trying to limit the number of records I'm retrieving in a subreport to the 5 most recent revisions based on the revision number. I've entered the following the the Section Expert-Details-Common-Suppress (No Drill-Down) formula
I'm a total rookie at this (obviously) so I'm sure I'm missing information that you may require.
Thanks for any help.
Lorraine
Code:
numbervar RevLoop;
numbervar RevMax;
RevMax = Maximum ({Revisions.RevisionN});
RevLoop = RevMax-4;
{Revisions.RevisionN}<>RevLoop To RevMax
Thanks for any help.
Lorraine