Can you run an append query using a where clause
Like this but to run an append query
DoCmd.OpenReport "r_Shop1and7IndividualCoverSheet", acViewReport, , "[BillingInvoiceID] = '" & Me.BillingInvoiceID & "'"
Can you run an append query using a where clause
Like this but to run an append query
DoCmd.OpenReport "r_Shop1and7IndividualCoverSheet", acViewReport, , "[BillingInvoiceID] = '" & Me.BillingInvoiceID & "'"
docmd.openquery "appendQry"
the where is in the query.... but use the full path
forms!myForm!BillingInvoiceID
The problem is that I am using this from a continuous form, will it be able to pull that value when using a continuous form?
it will pull the 1 current record your cursor is on.