I have a subform in datasheet view. I want to select a line and use one of the fields in this record to open another form with this field key in the "WHERE" of the SQL selection. I have the following code:
Dim strWhere As String
strWhere = "[FormNo] = " & Me.FormNo & " "...