I cannot seem to Append the correct record in my Append Query!! I need to Append the old Address to the tblAddress from the frmNames(linked to tblNames).<br>I did this this way.....<br>Private Sub Address_BeforeUpdate(Cancel As Integer)<br> If Address.OldValue = Address.Value Then<br> <br> Else<br> <br> Call Appendme(in function module)<br> <br> End If<br> <br>End Sub<br><br>Problem is it only appends the old value partially because I made it append the oldvalue in the expression in the query?<br>Can you help me with the code?<br>