GetSelectedCount
GetSelectedCount()는 필드 내에서 선택한(녹색) 값의 수를 찾습니다.
구문:
GetSelectedCount (field_name [, include_excluded])
반환 데이터 유형: 정수
인수:
- field_name: 측정할 데이터 범위가 포함된 필드입니다.
- include_excluded: True()로 설정하면 카운트에 다른 필드의 선택 내용에 따라 현재 제외된 선택 값이 포함됩니다. False이거나 생략된 경우 해당 값이 포함되지 않습니다.
- state_name: The name of an alternate state. If specified, the counted value for the field in the alternate state is returned. If no alternate state is provided, the default state is used.
예
다음 예에서는 서로 다른 목록 상자에 로드된 세 필드를 사용하며, 하나는 First name 이름, 하나는 Initials, 하나는 Has cellphone입니다.
예 1: First name에서 John이 선택됩니다.
GetSelectedCount ([First name])
1을 반환하며, First name에서 하나의 값이 선택되었기 때문입니다.
예 2: First name에서 John이 선택됩니다.
GetSelectedCount ([Initials])
0을 반환하며, Initials에서 아무 값도 선택하지 않았기 때문입니다.
예 3: First name에서 아무 값도 선택하지 않고 Initials에서 모든 값을 선택하고 Has cellphone에서 Yes를 선택했습니다.
GetSelectedCount ([Initials], True())
6을 반환합니다. Initials MC 및 PD의 선택 내용에서 Has cellphone이 No로 설정되었어도 결과는 그대로 6이며, 이는 인수 include_excluded가 True()로 설정되었기 때문입니다.
예제에서 사용된 데이터:
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 '|');