Hi 
  
I have this on the Form - On Current Event to show how many records I have on the Form, However when the employee filters the combo box's I want the record count to show the current records when they finish each filter. At the moment it just shows random numbers.
  
Please help if you can :banghead:
  
 
	
	
	
		
 I have this on the Form - On Current Event to show how many records I have on the Form, However when the employee filters the combo box's I want the record count to show the current records when they finish each filter. At the moment it just shows random numbers.
Please help if you can :banghead:
		PHP:
	
	
	 Private Sub Form_Current()
  
     If Me.NewRecord Then
        Me.lblRecordCount.Caption = "New Record"
 
    Else
        Me.lblRecordCount.Caption = _
         "Record " & Me.CurrentRecord & " of " & Me.Recordset.RecordCount
 
    End If
    
End Sub