suggestable
Usage
view: view_name {
dimension: field_name {
suggestable: yes
}
}
dimension: field_name {
suggestable: yes
}
}
Hierarchysuggestable |
Possible Field TypesDimension, Dimension Group, Measure, Filter, ParameterAcceptsA Boolean (yes or no) |
Definition
suggestable
lets you disable suggestions for a dimension or filter of type: string
when someone uses that field to filter a report. The default value of suggestable
is yes
, and suggestions are provided to the user when possible. If you set suggestable
to no
instead, suggestions will not be made. Filter suggestions only work with dimensions of type: string
, so suggestable
works only with dimensions of type: string
.
Examples
Prevent the name
dimension from providing suggestions:
dimension: name {
type: string
sql: ${TABLE}.name ;;
suggestable: no
}