RecordNumber on a text box (1 Viewer)

Liv Manto

Registered User.
Local time
Today, 08:41
Joined
Apr 26, 2001
Messages
266
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

Registered User.
Local time
Today, 08:41
Joined
Jun 15, 2000
Messages
719
In the controlsource put...

=[CurrentRecord]

HTH
 

cargobay 69

Registered User.
Local time
Today, 08:41
Joined
May 1, 2001
Messages
25
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

Registered User.
Local time
Today, 08:41
Joined
Jun 15, 2000
Messages
719
For Total records use...
=Count(*)

Or to show both in one text box...

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

HTH
 

Users who are viewing this thread

Top Bottom