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)
 
Back
Top