I have a report with the data source being a crosstab query. The crosstab is a "Count" of, and there are several rows / columns I have added (of text boxes) to perform calculations on these values. Since the crosstab displays nothing if the count is zero (instead of "0", I am using the Iif funciton in the calculated text boxes. Like(Iif [#1]isnull,0,[#1])-(Iif [#2]isnull,0,[#2])). My calculations / percentages are all working fine, but I would like to display errors as either "0", or null. For instance, if [#1] is null, and [#2] is not, the percentage comes up with DIV/0. Is there a way to default this to either zero / null, or simply hide this type of error? Your help is greatly appreciated in advance.