GetNotSelectedCount - chart function
This chart function returns the number of not-selected values in the field named fieldname. The field must be in and-mode for this function to be relevant.
Syntax:
GetNotSelectedCount(fieldname [, includeexcluded=false])
Arguments:
Argument | Description |
---|---|
fieldname | The name of the field to be evaluated. |
includeexcluded |
If includeexcluded is stated as True, the count will include selected values which are excluded by selections in another field. |
The following table lists other functions that are related to this function.
Function | Interaction |
---|---|
GetStateCounts - chart function |
Using GetStateCounts(), you can combine the calculation of the following counts using a single function call:
|
GetSelectedCount - chart function | Returns the count of selected included values. |
GetPossibleCount - chart function | Returns the count of possible values. |
GetAlternativeCount - chart function | Returns the count of alternative values. |
GetExcludedCount - chart function | Returns the count of excluded values, not including alternative and selected excluded values. |
Examples:
GetNotSelectedCount( Country )
GetNotSelectedCount( Country, true )