Retain Filter selection in Dashboards using temporary storage options via lookml

Hi Team ,

Is there any option to save user selection on filters via look ml like a temporary storage of filter selection.

Solved Solved
0 1 391
1 ACCEPTED SOLUTION

We can use _filters['view.filed'] | url_encode as query param inside the html property of a measure field

measure: user_details_link {
hidden: yes
description: "This links to the User Details dashboard."
group_label: "Html links"
sql: 1 ;;
html: <div style = '
font-size: 18px;'
><a

href="your_url?
Filter+Name={{  _filters['view.filed'] | url_encode }}
"
>
Your_button</a> ;;
}

View solution in original post

1 REPLY 1

We can use _filters['view.filed'] | url_encode as query param inside the html property of a measure field

measure: user_details_link {
hidden: yes
description: "This links to the User Details dashboard."
group_label: "Html links"
sql: 1 ;;
html: <div style = '
font-size: 18px;'
><a

href="your_url?
Filter+Name={{  _filters['view.filed'] | url_encode }}
"
>
Your_button</a> ;;
}

Top Labels in this Space
Top Solution Authors