The suggestable parameter lets you disable suggestions for a field when a user filters on that field in a Look or an Explore. The default value of suggestable is yes, and suggestions are provided when possible. If you set suggestable to no, Looker won't suggest values for the field.
Examples
Prevent Looker from providing filter value suggestions for the name dimension:
dimension: name {
type: string
sql: ${TABLE}.name ;;
suggestable: no
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-25 UTC."],[],[],null,["# suggestable\n\n\u003cbr /\u003e\n\nUsage\n-----\n\n```\nview: view_name {\n dimension: field_name {\n suggestable: yes \n }\n}\n```\n\nDefinition\n----------\n\nWhen a user [filters an Explore](/looker/docs/2512/filtering-and-limiting) on a [field that supports suggestions](/looker/docs/2512/changing-filter-suggestions#fields_that_support_suggestions), by default Looker will suggest possible values for the field (see [Changing filter suggestions](/looker/docs/2512/changing-filter-suggestions) for information about how you can affect filter suggestions).\n\nThe `suggestable` parameter lets you disable suggestions for a field when a user filters on that field in a Look or an Explore. The default value of `suggestable` is `yes`, and suggestions are provided when possible. If you set `suggestable` to `no`, Looker won't suggest values for the field.\n| **Note:** If the field's view is defined with [`suggestions:no`](/looker/docs/2512/reference/param-view-suggestions), Looker won't provide suggestions for any field in the view, even if the field is defined with `suggestable:yes`.\n\nExamples\n--------\n\nPrevent Looker from providing filter value suggestions for the `name` dimension: \n\n dimension: name {\n type: string\n sql: ${TABLE}.name ;;\n suggestable: no\n }"]]