A new problem has arised that seems like it should be happening at all! Reference what has already been done to this thread: <A HREF=" TARGET="_new"> when I goto update the data, it always adds the first item in the database to the collection of items at the location I am presently viewing and updating. Every time I change the location and update the counter and date using the method Doug had suggested (which works great)it adds that line to the location and updates it with the new info.<br>Code looks like this (which is doug's code obviously):<br><br>Private Sub clock_Enter()<br> Dim rs As Recordset<br> Dim a As Integer, SomeValue As Variant<br> <br> SomeValue = Me!clock<br> Set rs = Me![JustinQ2subform].Form.RecordsetClone<br> rs.MoveLast<br> rs.MoveFirst<br> For a = 1 To rs.RecordCount<br> rs.Edit<br> rs!counter1 = SomeValue 'Change the value here<br> rs.update<br> rs.MoveNext<br> Next<br> rs.Close<br> Me.Requery<br>End Sub<br><br>Thanks for all your time!<br>