Summing in a Report

N

nazir.atif

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

Marshall Barton

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