GetAlternativeCount
GetAlternativeCount() 用于查找标识字段中可能(浅灰色)值的数量。
语法:
GetAlternativeCount (field_name)
返回数据类型:整数
参数:
- field_name: 包含要度量的数据范围的字段。
示例
下面的示例使用加载到列表框中的 First name 字段,以及以下语法:
GetAlternativeCount ([First name])
- 假定在 First name 中选择了 John,脚本返回 4,因为在 First name 中存在 4 个唯一和排除的(灰色)值。
- 假定在 Peter 中选择了 John,脚本返回 3,因为在 First name 中存在 3 个唯一和排除的(灰色)值。
- 假定在 First name 中没有选择值,脚本返回 0,因为不存在选择项。
示例中所使用的数据:
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 '|');