Hello all! I need your help. Several days I try to understand how I should pass parameters in the following case.
I have a view with several dimensions and measures. I have a visualization using this view (just a table). When I click on one dimension I want to go to another explore. For this purpose I use “link” and “url”.
I do it the following way:
link: {
label: “Drilldown”
url: “…/explore/model_name/explore_name?fields=
field1,field2,field3…
&f[view_name.first_parameter]={{ first_parameter._parameter_value }}
&f[view_name.second_parameter]={{ second_parameter._parameter_value }}
&f[view_name.dimension_name]={{ value }}”
icon_url: “http://www.looker.com/favicon.ico”
}
The link works, I can go to another explore. But I want to go to that explore using filters and parameters from the previous look, that is why I pass first_parameter, second_parameter and dimension_name.
Suddenly I don’t know why, but filters can be passed and parameters not. This line doesn’t work:
= {{ first_parameter._parameter_value }}
the same is when I use:
= {% first_parameter._parameter_value }
It just returns todays date (the type of the parameter is date).
Maybe you have any ideas how I can pass parameters to another explore?
Thank you very much in advance.