GetExcludedCount
GetExcludedCount() 用于查找标识字段中排除的不同值的数量。排除的值包括替代(白色或浅黄)、已排除和所选已排除(灰色)字段。
语法:
GetExcludedCount (field_name)
返回数据类型: 字符串
参数:
- field_name: 包含要度量的数据范围的字段。
示例
以下示例使用三个加载到不同列表框的字段,一个用于 First name,一个用于 Last name,另一个用于 Initials。
示例 1: 如果在 First name 中没有选择值。
GetExcludedCount (Initials) = 0
没有选择项。
示例 2: 在 First name 中选择了 John
GetExcludedCount (Initials) = 5
在 Initials 中有灰色的 5 个排除值。第六个单元格(JA)为白色,因为它与 First name 中的选择项 John 关联。
示例 3: 已在 First name 中选择了 John 和 Peter
GetExcludedCount (Initials) = 3
在 Initials 中,John 与 1 个值关联,而 Peter 与 2 个值关联。
示例 4: 已在 First name 中选择了 John 和 Peter,已在 Last name 中选择了 Franc
GetExcludedCount ([First name]) = 4
在名字中有灰色的 4 个排除值。GetExcludedCount() 评估有排除值的字段,包括替代和已选排除的字段。
示例 5: 已在 First name 中选择了 John 和 Peter,已在 Last name 中选择了 Franc 和 Anderson
GetExcludedCount (Initials) = 4
在 Initials 中有灰色的 4 个排除值。因为和 First name 中的选择项 John 和 Peter 关联,其他两个单元格(JA 和 PF)将为白色或浅黄色。
示例 6: 已在 First name 中选择了 John 和 Peter,已在 Last name 中选择了 Franc 和 Anderson
GetExcludedCount ([Last name]) = 4
在 Initials 中有 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 '|');