Put a text box in your detail section, call it "txtNumber" make it's Control Source "=-1" (no quotes) and set property RUNNING SUM to OVER GROUP. You can make this VISIBLE=NO eventually. If you look now you will see it will count -1,-2,-3, etc.
Put a second text box in your detail section, set it to count the number of records in your table or query, minus the count in txtNumber:
=DCount("EmpNo","tblEmployee")-[txtNumber]+1
You have to sub in a field name for "EmpNo" and your table/query name for "tblEmployees". This is the text box you want to display.
g
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244