GetExcludedCount - 图表函数
GetExcludedCount() 用于查找标识字段中排除的相异值的数量。仅计算排除的(深灰色)字段。备选值(浅灰色)和选定的排除值(带复选标记的深灰色)不计算在内。
语法:
GetExcludedCount (field_name)
返回数据类型: 字符串
参数 | 描述 |
---|---|
field_name | 包含要度量的数据范围的字段。 |
下表列出了与此函数相关的其他函数。
函数 | 交互 |
---|---|
GetStateCounts - 图表函数 |
使用 GetStateCounts(),您可以使用单个函数调用组合以下计数的计算:
|
GetSelectedCount - 图表函数 | 返回所选包含值的计数。 |
GetPossibleCount - 图表函数 | 返回可能值的计数。 |
GetAlternativeCount - 图表函数 | 返回替代值的计数。 |
示例和结果:
将下面的示例脚本加载到应用程序中后,创建三个筛选器窗格:一个用于 First name,一个用于 Last name,一个用于 Initials。表中的每个示例表达式都可以添加为 KPI 图表。
示例 | 结果 |
---|---|
假定未在 First name 中选择任何值。 GetExcludedCount (Initials) |
结果为 0,因为没有选择。 |
假定选择 John(在 First name 中)。 GetExcludedCount (Initials) |
结果为 5。首字母中有 5 个排除的值,颜色为深灰色。 JA 值将为白色,因为它与 First name 中的选择 John 相关联。 |
假定已选择 John 和 Peter。 GetExcludedCount (Initials) |
结果为 3。John 与 1 个值相关联,Peter 与 Initials 中的 2 个值相关联。 |
假设 First name 中选择了 John 和 Peter,然后在 Last name 中选择 Franc。 GetExcludedCount ([First name]) |
结果为 3。First name 中有 3 个排除值,颜色为深灰色。GetExcludedCount() 仅计算排除的值。备选和选定的排除值不包括在计数中。 |
假设 First name 中选择了 John 和 Peter,然后在 Last name 中选择 Franc 和 Anderson。 GetExcludedCount (Initials) |
结果为 4。Initials中有 4 个排除的值,颜色为深灰色。其他两个值(JA 和 PF)将为白色,因为它们与 First name 中的选择 John 和 Peter 相关联。 |
假设 First name 中选择了 John 和 Peter,然后在 Last name 中选择 Franc 和 Anderson。 GetExcludedCount ([Last name]) |
结果为 3。Last name中有 3 个排除的值,颜色为深灰色。Brown、Carr 和 Elliot。值 Devonshire 为浅灰色(表示它是可选的),因此不包括在计数中。 |
示例中所使用的数据:
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 '|');