Report Problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am receiving the following code when I try to run reports:
Code 2427 ... Yuo entered an expression that has no value.
I had test data in the table. Everything was working fine until I deleted
the data .
My entry form is set so that if a enter a name I can create,edit,or get a
report on this individual. IF I don't enter a name then I got reports for
everyone. Now,I can't get any reports. I can only Create a record and edit a
record.

When I check the Holdname code value was Null.
 
It sounds like you have a text box or a condition inside your report
referring to Holdname, if so, try to make a reference in the report using
nz([Holdname],""),

For example, if you have something like this in the code of your report:

if me.Holdname then

replace it with this:

if nz(me.holdname,"") then
 
Back
Top