G
Guest
I'm trying to add a signature to a report.
A form has a subform and a command button. The user picks from the subform
clicks this command button and the report is displayed. (This works fine)
stDocName = "rptThankYou"
stLinkCriteria = "[ICNNo]='" & Me![ICNNo] & _
"' AND [ProvNo] = '" & Me!f_ProvSub!ProvNo & "'"
DoCmd.OpenReport stDocName, acPreview, , stLinkCriteria
I'm trying to add a value for a signature..
I have added a combo box (Signature) which has the row source liked to the
signature table.
My question is - How can I add the signature to the report?
The report is made from a query, the signature table is not, part of the
query!
THe code below shows my attempt - but the [Signature] does not exist - I
understand that but I'm trying to figure out a way to allow the user to pick
from the combo box for the signature..
stLinkCriteria = "[ICNNo]='" & Me![ICNNo] & _
"' AND [ProvNo] = '" & Me!f_ProvSub!ProvNo & "'" AND [Signature] = '" &
Me![Signature]& "'"
A form has a subform and a command button. The user picks from the subform
clicks this command button and the report is displayed. (This works fine)
stDocName = "rptThankYou"
stLinkCriteria = "[ICNNo]='" & Me![ICNNo] & _
"' AND [ProvNo] = '" & Me!f_ProvSub!ProvNo & "'"
DoCmd.OpenReport stDocName, acPreview, , stLinkCriteria
I'm trying to add a value for a signature..
I have added a combo box (Signature) which has the row source liked to the
signature table.
My question is - How can I add the signature to the report?
The report is made from a query, the signature table is not, part of the
query!
THe code below shows my attempt - but the [Signature] does not exist - I
understand that but I'm trying to figure out a way to allow the user to pick
from the combo box for the signature..
stLinkCriteria = "[ICNNo]='" & Me![ICNNo] & _
"' AND [ProvNo] = '" & Me!f_ProvSub!ProvNo & "'" AND [Signature] = '" &
Me![Signature]& "'"