Hello, RevJeff,
Your outer loop checks for EOF on the recordset, but your inner loop needs to check for it also. Might I suggest the following amendment to the inner loop?
Do Until rs.Fields("CellExt") <> Cell
Text = Text & " " & rs.Fields("DriverTime")
If rs.EOF = True...