I have columns 1 - 5, which contain counts. Some are null if none exist. I used Nz on each column to place a zero in the null fields. I am trying to count the zero. I am trying to add columns 3 - 5 in each row then divide by another row to receive what I am calling a rating.
Without the Nz, the query would only count if rows 3 - 5 all contained a value. If any contained a null value, then the rating would be null. That's when I added the Nz function. (A3: Nz([3],0)
Now with the Nz function, there are zeros in place of any nulls, but my rating is all messed up. Have no idea where the answer is coming from. I am using:
Rating: ([A5]+[A4]+[A3])/[Total]. Not real sure how the system is evaluating the new zeros. Anyone have any ideas?![]()