GetFieldSelections - chart function
GetFieldSelections() returns a string with the current selections in a field.
If all but two, or all but one of the values are selected, the format 'NOT x,y' or 'NOT y' will be used respectively. If you select all values and the count of all values is greater than max_values, the text ALL will be returned.
Syntax:
GetFieldSelections ( field_name [, value_sep [, max_values]])
Return data type: string
Arguments:
Arguments | Description |
---|---|
field_name | The field containing the range of data to be measured. |
value_sep | The separator to be put between field values. The default is ', '. |
max_values |
The maximum number of field values to be individually listed. When a larger number of values is selected, the format 'x of y values' will be used instead. The default is 6. |
Examples and results:
The following example uses two fields loaded to different filter panes, one for First name name and one for Initials.
Examples | Results |
---|---|
Given that John is selected in First name. GetFieldSelections ([First name]) |
'John' |
Given that John and Peter are selected. GetFieldSelections ([First name]) |
'John,Peter' |
Given that John and Peter are selected. GetFieldSelections ([First name],'; ') |
'John; Peter' |
Given that John, Sue, Mark are selected in First name. GetFieldSelections ([First name],';',2) |
'NOT Jane;Peter', because the value 2 is stated as the value of the max_values argument. Otherwise, the result would have been John; Sue; Mark. |
Data used in example:
Initials:
LOAD * inline [
"First name"|Initials|"Has cellphone"
John|JA|Yes
Sue|SB|Yes
Mark|MC |No
Peter|PD|No
Jane|JE|Yes
Peter|PF|Yes ] (delimiter is '|');