#Error in calculated field

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

Guest

The following expression is what I am using to add scores from two different
forms. It works if both fields have values in them, but if one field does
not have a vaule it returns #Error. How can I correct this so that it does
not display "#Error" in the field?

=Nz([Eval Grants score]![Text30]+[Eval Tech score]![Text40],0)

TB
 
I tried that too and it still returns #Error. Is there anything else I can
do? ;-)

TB

Rick B said:
=Nz([Eval Grants score]![Text30],0)+Nz([Eval Tech score]![Text40],0)

--
Rick B



TB said:
The following expression is what I am using to add scores from two
different
forms. It works if both fields have values in them, but if one field does
not have a vaule it returns #Error. How can I correct this so that it
does
not display "#Error" in the field?

=Nz([Eval Grants score]![Text30]+[Eval Tech score]![Text40],0)

TB
 
I have also tried:

IIf(IsNull([Eval Grants score]![Text30]+[Eval Tech score]![Text40]),0,[Eval
Grants score]![Text30]+[Eval Tech score]![Text40])

This also returns an #Error. Please help.

TB

TB said:
I tried that too and it still returns #Error. Is there anything else I can
do? ;-)

TB

Rick B said:
=Nz([Eval Grants score]![Text30],0)+Nz([Eval Tech score]![Text40],0)

--
Rick B



TB said:
The following expression is what I am using to add scores from two
different
forms. It works if both fields have values in them, but if one field does
not have a vaule it returns #Error. How can I correct this so that it
does
not display "#Error" in the field?

=Nz([Eval Grants score]![Text30]+[Eval Tech score]![Text40],0)

TB
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top