A recordset clone is a disconnected duplicate of an already open recordset (Form recordset or a Recordset object).
You can use a clone to do your searching of records and moving the main recordset only when you found the one that you want. This can prevent the choppy look you get when programmatically move records on a form.
Basically anything you do to a clone does not directly effect the original recordset.