Hi all,
I have a requirement where I need to enable drilldown from a dimensional attribute to a different dashboard. I have used the link method with liquid for the attribute which works as explained in documentation.
However thereโs a futher requirement to limit the drill-path to certain Looks - i.e. not on every Look that uses the attribute.
Is there a way to achieve this or are drill-paths applied globally?
Regards,
Sandeep
Hey @sandsp, you can make tht the link appears only when some conditions are met using liquid.
Say that you want that link to only appear in Looks that are using a specific Explore (Orders) and a specific dimension (orders.created_date).
You would then do something like so:
link: {
label: "{% if _explore._name == 'orders' and orders.created_date._in_query %} some label {% else %} {% endif %}"
url: "{% if _explore._name == 'orders' and orders.created_date._in_query %} some link {% else %} {% endif %}"
}
Hi @Cyril_MTL_Analy,
Many thanks for your response. I certainly need to expore Liquid in-depth for the flexibility it provides.
Regards,
Sandeep