In cases where you've used the group_label parameter to combine fields into custom groups in a view's field picker, you can also use the group_item_label parameter for each of the grouped fields to customize how the individual fields are shown in the field picker.
For example, you can add the group_label to a set of fields like this:
These fields will now be combined into an expandable Shipping Info section in the field picker.
But since these fields are shown under the expandable Shipping Info section, they don't need to have "Shipping" in their individual labels as well. So you can add the group_item_label parameter to each of the grouped fields:
The group_item_label displays only in the field picker. In the Data section of an Explore and in any visualizations, Looker displays the field's name or label as normal.
[[["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-14 UTC."],[],[],null,["# group_item_label\n\n\u003cbr /\u003e\n\nUsage\n-----\n\n```\nview: view_name {\n dimension: field_name {\n group_item_label: \"desired label\"\n }\n}\n```\n\nDefinition\n----------\n\nIn cases where you've used the [`group_label`](/looker/docs/2512/reference/param-field-group-label) parameter to combine fields into custom groups in a view's field picker, you can also use the `group_item_label` parameter for each of the grouped fields to customize how the individual fields are shown in the field picker.\n\nFor example, you can add the `group_label` to a set of fields like this: \n\n view: accounts {\n dimension: shipping_city {\n sql: ${TABLE}.shipping_city ;;\n group_label: \"Shipping Info\"\n }\n dimension: shipping_state {\n sql: ${TABLE}.shipping_state ;;\n group_label: \"Shipping Info\"\n }\n dimension: shipping_street {\n sql: ${TABLE}.shipping_street ;;\n group_label: \"Shipping Info\"\n }\n }\n\nThese fields will now be combined into an expandable **Shipping Info** section in the field picker.\n\nBut since these fields are shown under the expandable **Shipping Info** section, they don't need to have \"Shipping\" in their individual labels as well. So you can add the `group_item_label` parameter to each of the grouped fields: \n\n view: accounts {\n dimension: shipping_city {\n sql: ${TABLE}.shipping_city ;;\n group_label: \"Shipping Info\"\n group_item_label: \"City\"\n }\n dimension: shipping_state {\n sql: ${TABLE}.shipping_state ;;\n group_label: \"Shipping Info\"\n group_item_label: \"State\"\n }\n dimension: shipping_street {\n sql: ${TABLE}.shipping_street ;;\n group_label: \"Shipping Info\"\n group_item_label: \"Street\"\n }\n }\n\nThe `group_item_label` displays only in the field picker. In the Data section of an Explore and in any visualizations, Looker displays the field's name or label as normal."]]