R
Reid Kell
I submitted the following recently about numbering report items in
descending order. I thought Fred had solved my problem, but I need to
determine the total number of records in the *detail* section of each group,
not the entire report as Count(*) supplies. Any ideas?
Reid Kell
Add an unbound control to the report.
Set it's control source to
=1
Set it's running sum property to Over All
Name this control RecCount.
You can make itr not visible if you want.
Add another unbound control.
Set it's Control Source to
= 5 - [RecCount]
If the start number (5) is dependent upon the actual number of records
in the report, use:
=Count(*)-[RecCount]
descending order. I thought Fred had solved my problem, but I need to
determine the total number of records in the *detail* section of each group,
not the entire report as Count(*) supplies. Any ideas?
Reid Kell
Reid,How can I display a counter in *descending* order in the detail section of a
report? When there's five items, I need to display 5..4..3..2..1, not the
other way around (which is easy). Is there an easy way to accomplish this?
I'm not willing to do a Count query each time to figure it out. Thanks.
Add an unbound control to the report.
Set it's control source to
=1
Set it's running sum property to Over All
Name this control RecCount.
You can make itr not visible if you want.
Add another unbound control.
Set it's Control Source to
= 5 - [RecCount]
If the start number (5) is dependent upon the actual number of records
in the report, use:
=Count(*)-[RecCount]