Summing in a Report

  • Thread starter Thread starter nazir.atif
  • Start date Start date
N

nazir.atif

=Sum([Amount]) returns #Error if the query returns no results. How do I
convert this #Error to a neat 0?
 
=Sum([Amount]) returns #Error if the query returns no results. How do I
convert this #Error to a neat 0?


Try using:

=IIf(Report.HasData, Sum(Amount), 0)
 

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