Hello,
Trying to link a measure on a Look on one Dashboard to another Dashboard which contains additional details specific for a dimension. However when I pass the dimension value in the link for the measure it changes the measure value on the Dashboard. Simple description:
Dashboard #1 contains 2 Looks (Tiles):
- Single Value Look with the overall metric_value which is a percentage (measure)
- Top 10 Products listing the metric_value (measure) for each Product
Dashboard #2 contains additional Looks (Tiles) regarding the Product from Dashboard 1 Top 10 Look, passing the value of the Product Dimension as a filter.
dimension: product
type: string
sql: {TABLE}.product
measure: metric_value
type: number
sql: (1.0*${count_products})/NULLIF(${volume}, 0) ;;
value_format_name: percent_2
link: {
label: “Product Review”
url: “https://myinstance.looker.com/dashboards/88?Product={{ view.product._filterable_value }}”
}
The link works on the measure, however the Value for the Single Value Look on Dashboard #1 changes from its actual value to 100%
Any advise would be most appreciated.
Thank you