The query for my report passes back two numeric fields that are used in a grand total in my report footer. In most cases, I am getting back 3 records, and I get the sum of each in my report footer, then add those two sums together to get my grand total (SUM({FieldA}) + SUM({FieldB})). The problem occurs when one of those fields has a NULL for all 3 records. Nothing shows up in my grand total field. I tried using an IIF and checking for IsNull, but that didn't seem to work (IIF(IsNULL(SUM({FieldB})), 0, SUM({FieldB}))). Any suggestions? Thanks in advance!