View Full Version : RecordNumber on a text box


Liv Manto
05-07-2001, 12:38 PM
How do I put the record number in an unbound text box. I am simulating the navigation control but I don't want to use it.

KevinM
05-07-2001, 02:53 PM
In the controlsource put...

=[CurrentRecord]

HTH

cargobay 69
05-08-2001, 01:36 AM
Excellent, I was looking for that information too, but now, what do you use to call the 'total records' number to finish it off?

Thanks

KevinM
05-08-2001, 02:03 AM
For Total records use...
=Count(*)

Or to show both in one text box...

=[CurrentRecord] & " of " & Count(*)

HTH