Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text box to calculate total records in a table?

Status
Not open for further replies.

ChrisHaynes

Technical User
Mar 9, 2006
80
GB
Hi, I have a text box on my main form which I need to calculate the total records in 1 of my tables and display the total.

What code do I need to put in the control source of the text box??

Cheers,
Chris.
 
There is probably an easier way, but I use this function because I built it to do other things.

Public Function myRecordCount(strFormName As String) As Integer
Dim rs As DAO.Recordset
Set rs = Forms(strFormName).RecordsetClone
rs.MoveFirst
rs.MoveLast
myRecordCount = rs.recordcount
Set rs = Nothing
End Function

In an unbound textbox

=myRecordCount("YourFormNameGoesHere")
 
I created a command button that on the OnClick event I placed: (Private Sub and End Sub will already be there)

Private Sub Command11_Click()
Dim holdcount As Integer
holdcount = CurrentDb.TableDefs("Mailinglist").RecordCount
Me![countbox].Value = holdcount
End Sub

Substitute your tablename for Mailinglist.
Substitute your textbox name for countbox.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top