Yes, I understand how relational databases work, thanks. This is 2 FORMS
using the same table data. One in datasheet view, then double-click to get
to columnar view for a single record.
Double-click code:
Private Sub Form_DblClick(Cancel As Integer)
Dim num As Long
num = Me.CurrentRecord
DoCmd.OpenForm "T_Request"
DoCmd.GoToRecord acDataForm, "T_Request", acGoTo, num
End Sub
Thanks for your assistance.