Report contains no data

C

Cassie

I've created a report based on a query. You enter the last
name of the person and their information should display on
the screen. However, after adding a new person, the report
does not display anything but a blank report. Older
records display fine.

Thanks for any help I can get.
 
S

Steve Schapel

Cassie,

Maybe the new record has not yet been saved to the table, at the time
that you are trying to preview the report for this person. Assuming you
have a VBA procedure on an event on the data form, try adding a line of
code...
DoCmd.RunCommand acCmdSaveRecord
in front of whatever you use to open the report.
 
C

Cassie

The record appears in the table, so I don't think that's
it. Do you have any other suggestions?

Thanks
 
S

Steve Schapel

Cassie,

Please give some more information about what you are doing. In
particular, how is the report being generated?
 
Top