Connecting Tech Pros Worldwide Help | Site Map

Record Count

 
LinkBack Thread Tools Search this Thread
  #1  
Old February 15th, 2006, 04:25 PM
Mike
Guest
 
Posts: n/a
Default Record Count

I have a form where I have turned off the default navigation buttons. I
then created my own. This works fine. The only questions that I have is on
the default navigation buttons it shows total records. How can I show this?
I have a text box that shows the current record using:

Text1 = Me.Current

I want to show the total number of records.

How do I do this?

Mike Charney
m charney at dunlap hospital dot org


  #2  
Old February 15th, 2006, 05:55 PM
Cyrille
Guest
 
Posts: n/a
Default Re: Record Count

Hi,

Try this :

Supposing the textbox containing the total number of records is named
txtTotalRecords,
insert this line into the "Current" Event Procedure of your form :

Me.txtTotalRecords.Value = Me.Recordset.RecordCount
that should do the trick ...

Hope it was useful

--
Cyrille

  #3  
Old February 15th, 2006, 06:15 PM
Cyrille
Guest
 
Posts: n/a
Default Re: Record Count

Hi,

Try this :

Supposing the textbox containing the total number of records is named
txtTotalRecords,
insert this line into the "Current" Event Procedure of your form :

Me.txtTotalRecords.Value = Me.Recordset.RecordCount
that should do the trick ...

Hope it was useful

--
Cyrille

  #4  
Old February 15th, 2006, 07:15 PM
Cyrille
Guest
 
Posts: n/a
Default Re: Record Count

Sorry for the double post, I'm posting through Google Groups, and there
must have been a problem with my first posting

  #5  
Old February 16th, 2006, 08:05 AM
Gox
Guest
 
Posts: n/a
Default Re: Record Count

Mike wrote:[color=blue]
> I have a form where I have turned off the default navigation buttons. I
> then created my own. This works fine. The only questions that I have is on
> the default navigation buttons it shows total records. How can I show this?
> I have a text box that shows the current record using:
>
> Text1 = Me.Current
>
> I want to show the total number of records.
>
> How do I do this?
>
> Mike Charney
> m charney at dunlap hospital dot org
>[/color]

Mike,

in Control Source of Text1:

=IIf([CurrentRecord]>(Count(*));'New Record';('Record ' &
[CurrentRecord] & ' of ' & Count(*)))


--
Gox
  #6  
Old February 16th, 2006, 02:15 PM
Ted
Guest
 
Posts: n/a
Default Re: Record Count

Use the Bookmark function to mark your current record, perform the
MoveLast to go to the last record in the recordset, grap the record
count, then return to you bookmarked record.
My understanding is that sometimes the recordcount is not accurate
unless you force the recordset to the last record.
I can't remember exactly which user group I read that in of if I got it
from one of the Access User Group meetings I attend at Microsoft in
Redmond, but the most accurate record count is obtained by forcing the
MoveLast to find the last record.

  #7  
Old February 17th, 2006, 04:35 AM
Larry Linson
Guest
 
Posts: n/a
Default Re: Record Count

"Cyrille" <che.public@gmail.com> wrote
[color=blue]
> Sorry for the double post, I'm posting through
> Google Groups, and there must have been a
> problem with my first posting[/color]

If you are going to apologize, do so for not saying that RecordCount gives
you a total number of Records in the Recordset ONLY if you have done a
..MoveLast before displaying the RecordCount. It is a count of number of
Records that have been displayed/ traversed, not a "total".

Larry Linson
Microsoft Access MVP



  #8  
Old February 17th, 2006, 09:15 PM
Cyrille
Guest
 
Posts: n/a
Default Re: Record Count

My mistake, I posted too quickly. It's even indicated in the Help of
Access, so I have no excuses.

The strange thing is, it _seems_ to work. (Of course this can't
constitute a valid justification for using this method, but
nevertheless ...)
I had tested it in a few forms, without the .MoveLast, and the
returned value was always coherent with the number of records (as
indicated in the navigation bar at the bottom). I had tested some
Recordset-related actions, like creating a new record, or deleting one,
and still the value returned by RecordCount (without a prior .MoveLast)
is correct.
So why does RecordCount does report correct values even when all the
records have not been traversed ?
And in which specific circumstances does this method returns false
values ?

The .Movelast - .Recordcount method seems to have a significant
impact on the performance, so is there a quicker and smarter way to
implement a record count ?

--
Cyrille

 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.