A counter...

  • Thread starter Thread starter Bugaboo Bill
  • Start date Start date
B

Bugaboo Bill

Hello,

I'm new to coding, but need to display the number of total
records on my main form. Is there a way to do this?
I'm using Access XP.
Thanks,

Bill.
 
-----Original Message-----
Hello,

I'm new to coding, but need to display the number of total
records on my main form. Is there a way to do this?
I'm using Access XP.
Thanks,

Bill.
.
Yes, you create an unbound field on your form and put the
following as recordsourse:
=RecordsetClone.RecordCount
Good luck,
Olga
 
Bugaboo said:
Hello,

I'm new to coding, but need to display the number of total
records on my main form. Is there a way to do this?
I'm using Access XP.
Thanks,

Bill.


DCount() is one option you could try.

hth

Hugh
 
Back
Top