AdamFeerst
Registered User.
- Local time
- Today, 14:43
- Joined
- Sep 21, 2015
- Messages
- 63
I'm getting this compile error, on the code below, on .ChecklistID even though ChecklistID does exist on the form.
stSQL = "INSERT INTO tblChecklistData SELECT " & Me.ChecklistID & " As ChecklistID, TaskID FROM tblChecklistTasks WHERE tblChecklistTasks.ListID=" & Me.cmbListType
It compiles if I replace Me. with Form.
Why is that?
stSQL = "INSERT INTO tblChecklistData SELECT " & Me.ChecklistID & " As ChecklistID, TaskID FROM tblChecklistTasks WHERE tblChecklistTasks.ListID=" & Me.cmbListType
It compiles if I replace Me. with Form.
Why is that?