Can anyone enlighten me with this problem?
Help please.
Thanks in advance
Code:
If BASE = False Then
rs.Edit
rs!HidWgt = rs!Weight
rs.Update
rs.Edit
rs!WgtBrk = rs!Weight
rs.Update
End if
this works for all records except for the last record
Code:
If BASE = False Then
rs.MovePrevious
rs.Edit
rs!HidWgt = rs!Weight
rs.Update
rs.Edit
rs!WgtBrk = rs!Weight
rs.Update
rs.MoveNext
End if
works but now the first record is blank
Help please.
Thanks in advance