枢转在包含在一个0计数为在所得到的透视表该列NULL值结果的字段。
用户使用“操作菜单”创建数据透视表,选择the_code
作为数据透视表列,并选择the_year
作为行列。他们为other_field
添加了一个COUNT函数。 NULL列的计数始终为0。用户想要看到多少记录有其中the_code
是NULL,以及其它数值。
数据:
the_year the_code other_field
2001 A x123
2001 B xxxx
2001 <null> 231x
2001 C 1x2x
2002 B wjr1
2003 A 2341
以上数据在交互式报告中呈现给用户。
他们期望:
the_year A B C <null>
2001 1 1 1 1 <----the correct count
2002 0 1 0 0
2003 1 0 0 0
他们得到:
the_year A B C <null>
2001 1 1 1 0 <----the problem
2002 0 1 0 0
2003 1 0 0 0
我怀疑IR的数据透视表功能是否未将null值转换为能够计数的值?如“有多少other_field = NULL?没有,没有什么等于NULL。”
有没有一种解决方案不涉及1)为它们手动创建数据透视表或2)将所有NULL值更新为某个虚假值?
感谢您的时间。