the question, does your table have Null values on either Name or Age field?
you can cancat then with empty string:
Dim rs As DAO.Recordset
Set rs = Me.RecordsetClone
rs.MoveLast
rs.MoveFirst
NumberPeople = rs.RecordCount
'I then have a for loop that that goes thru each record.
For i = 1 To...