Record Count Alternative

burrina

Registered User.
Local time
Today, 12:12
Joined
May 10, 2014
Messages
972
="Record" & Count([EmployeeID]) & " of" & Count([EmployeeID]) & "Records"

As an Example is not a Good Solution since records can be deleted,etc...
What would be a better alternative to show what record you are on of how many records?
 
The best solution would probably be the navigation buttons that forms have by default. I assume that's not really what you're looking for?
 
No, not really. They use up too much valuable Real Estate.

Thanks,
 
No, not really. They use up too much valuable Real Estate.

Thanks,

:eek: Wow, considering how small they are, that's kind of scary.

Okay, you can make a text box in the Detail section and use this as the control source:
Code:
=[CurrentRecord] & " of " & Count(*)
 
Guess it depends on your needs and design constraints.

Anyway, that was what I was after,

Thanks,
 

Users who are viewing this thread

Back
Top Bottom