Current Record

  • Thread starter Thread starter Lesley
  • Start date Start date
L

Lesley

When printing or recording ifnormation from a record; how
do I get it goto the current record?
 
Lesley

Define "current". How does Access know that is the record you consider
"current"?

If you are working from a form, and have a record showing (i.e., "current")
that you want to "send" to the report, you can add a command button that
uses something like (actual syntax may vary):

DoCmd.OpenReport "YourReportName", ..., "YourID = " & Me!YourIDFieldName

Good luck

Jeff Boyce
<Access MVP>
 
Back
Top