Howdy,
I am trying to add a hard-coded filter to the html parameter I have written for a dimension. Currently, I have the following (to allow me to drill to a look via the dimension and apply a filter to said look with the dimension’s value):
dimension: dimension_1 {
type: string
sql: ${TABLE}.dimension_1
html: <a href="/looks/260?f[view_1.dimension_1]={{ value }}">{{ value }}</a> ;;
}
I would like to add another hard-coded filter (e.g. is greater than or equal to 10) on a measure (type count) from another view to this html parameter. I was thinking it’d be something like this:
html: <a href="/looks/260?f[view_1.dimension_1]={{ value }}&f[view_2.measure_1]>=10">{{ value }}</a> ;;
However, this does not work. Neither does this:
html: <a href="/looks/260?f[view_1.dimension_1]={{ value }}&f[view_2.measure_1]=is+greater+than+or+equal+to+10">{{ value }}</a> ;;
Any and all help is much appreciated! Thanks!