GetExcludedCount - 图表函数
GetExcludedCount() 用于查找标识字段中排除相异值的数量。排除的值包括替代项(浅灰)、排除项(深灰)以及所选排除项(带复选标记的深灰)字段。
语法:
GetExcludedCount (field_name)
返回数据类型: 字符串
参数:
参数 | 说明 |
---|---|
field_name | 包含要度量的数据范围的字段。 |
示例和结果:
以下示例使用三个加载到不同筛选器窗格的字段,一个用于 First name,一个用于 Last name,另一个用于 Initials。
示例 | 结果 |
---|---|
假定未在 First name 中选择任何值。 |
GetExcludedCount (Initials) = 0
不存在选择项。 |
如果在 First name 中选择了 John。 |
GetExcludedCount (Initials) = 5
在姓名中的大写字母中有 5 个深灰色的排除值。第六个单元格 (JA) 为白色,因为它与 First name 中的选择项 John 关联。 |
如果选择了 John 和 Peter。 |
GetExcludedCount (Initials) = 3
在 Initials 中,John 与值 1 关联并且 Peter 与值 2 关联。 |
如果在 First name 中选择了 John 和 Peter,然后在 Last name 中选择了 Franc。 |
GetExcludedCount ([First name]) = 4
在名字中有深灰色的 4 个排除值。GetExcludedCount() 对带排除值的字段进行运算,包括替代项和选择的排除的字段。 |
如果在 First name 中选择了 John 和 Peter,然后在 Last name 中选择了 Franc 和 Anderson。 |
GetExcludedCount (Initials) = 4
在姓名中的大写字母中有 4 个深灰色的排除值。其他两个单元(JA 和 PF)将为白色,因为它们与选择项 John 和 First name 中的 Peter 关联。 |
如果在 First name 中选择了 John 和 Peter,然后在 Last name 中选择了 Franc 和 Anderson。 |
GetExcludedCount ([Last name]) = 4
在姓名中的大写字母中有 4 个排除值。Devonshire 具有浅灰色,而 Brown、Carr 和 Elliot 具有深灰色。 |
示例中所使用的数据:
Names:
LOAD * inline [
First name|Last name|Initials|Has cellphone
John|Anderson|JA|Yes
Sue|Brown|SB|Yes
Mark|Carr|MC|No
Peter|Devonshire|PD|No
Jane|Elliot|JE|Yes
Peter|Franc|PF|Yes ] (delimiter is '|');