W
Wei
I am running a crosstab query, which groups some fields,
and sums a field called [loss]. Some entries in the [Loss]
field is empty. So when I run this crosstab, it returns me
a null. Is there anyway to get rid of the null, and turn
it into a zero?
I've tried the following two methods, but neither works...
Method 1
Nz([Your Field], [Value If Your Field Is Null])
Method 2
IIf(IsNull([Your Field]), [Value If Your Field Is Null],
[Your Field])
Thanks in advance for any help.
Wei
and sums a field called [loss]. Some entries in the [Loss]
field is empty. So when I run this crosstab, it returns me
a null. Is there anyway to get rid of the null, and turn
it into a zero?
I've tried the following two methods, but neither works...
Method 1
Nz([Your Field], [Value If Your Field Is Null])
Method 2
IIf(IsNull([Your Field]), [Value If Your Field Is Null],
[Your Field])
Thanks in advance for any help.
Wei