Hello,
I have two forms:
1. A list of multiple records
2. A Data entry form
When a user double clicks on a record from form 1, form 2 opens and allows them to view and edit this record.
However double clicking always opens the first record, not the record clicked on 
This is the macro I used....
Code:
If Not IsNull([BuildingID]) Then
OpenForm
Form Name: RecordOpen
View: Form
Where Condition: == "[BuildingID]=" & [BuildingID]
End If
I had to type that out, as it Office 2010 has an awful macro tool thing.
I copied this from a template which works, why doesn't it work for me!?
Many Thanks