huskerphil
MIS
I've got a report that I need to be emailed to a certain person each time the button for it is clicked. What I'm having trouble with is that the report I'm emailing has criteria to give me a certain record on the report. Here how my report was generated before I found out I need to email it instead of print it.
DoCmd.OpenReport "appointment", acViewNormal, , "[LOAD_ID] = " & Me.formloadno.value
Is there anyway I can have criteria for emailing this report? I only want to be able to email the appointment report for the load id that is on my current form. Thanks!
DoCmd.OpenReport "appointment", acViewNormal, , "[LOAD_ID] = " & Me.formloadno.value
Is there anyway I can have criteria for emailing this report? I only want to be able to email the appointment report for the load id that is on my current form. Thanks!