GetAlternativeCount - チャート関数
GetAlternativeCount() は、特定された項目に含まれる代替値 (薄いグレー) の数を返します。
構文:
GetAlternativeCount (field_name)
戻り値データ型: 整数
引数:
引数 | 説明 |
---|---|
field_name | メジャー対象となるデータ範囲が含まれている項目です。 |
例と結果:
次の例では、フィルター パネルにロードされた First name 項目を使用しています。
例 | 結果 |
---|---|
John が First name に選択されている場合 GetAlternativeCount ([First name]) |
4 (First name に 4 種類の除外値 (グレー) があるため) |
John と Peter が選択されている場合 GetAlternativeCount ([First name]) |
3 (First name に 3 種類の除外値 (グレー) があるため) |
First name に値が選択されていない場合 GetAlternativeCount ([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 '|');