Given the following LookML:
dimension: GroupField1 {
group_label: "Group"
group_item_label: "Field 1"
label: "Group - Field 1"
type: string
sql: ${TABLE}."COLUMN1" ;;
}
dimension: GroupField2 {
group_label: "Group"
group_item_label: "Field 2"
label: "Group - Field 2"
type: string
sql: ${TABLE}."COLUMN2" ;;
}
I would like to add a description for the rollup. Unfortunately, adding the description parameter to GroupField1 and GroupField2 dimensions will place the tooltip text next to the group item - not at the top level of the rollup. This would be fine in many situations. But I’m currently in a situation where it would be incredibly redundant, and cause unnecessary clutter.
What I’m looking for would be akin to the behavior in a dimension_group:
dimension_group: SomeGroup {
label: "Some Group"
description: "This shows up at the top level of the rollup - NOT next to each group item"
...
}
Reference: Grouping Fields Within Views (3.44+)