I would thnk something like this would be functional
Private Sub Form_Load()
Me.RecordsetClone.MoveLast
Me.RecordsetClone.MoveFirst
Me.scroll1.Max = Me.RecordsetClone.RecordCount
End Sub
Private Sub scroll1_Updated(Code As Integer)
DoCmd.GoToRecord , , acGoTo, Me.scroll1.value + 1
End Sub