I have two subforms on a MainForm. Subform1 has a record source (tblOne) containing N records, and subform2 has a record source (tblTwo) containing 2N records. There is no other relationship between the record sources. What I want to do is when you move to, say, record 2 on subform1, then subform2 will automatically move to its record 3. When you move to record 3 on subform1, then subform2 automatically moves to its record 5, and so on. (The relationship is: move to record J on subform1, and subform2 automatically updates to record (2*J-1)). I want it to work the same if you were navigating subform2 - move to record 3, and subform1 displays its record 2, etc. I have tried for a week but canot find the right vba code to synchronize the two subforms as described. Any help much appreciated.