I have dashboard d1 which has following
measure: qt_s_d {
type: sum
value_format: “#,##0”
sql: ${TABLE}.qt_s ;;
html: {{ rendered_value }} | {{ qt_s_d1._rendered_value }} % of total;;
link: {
label: “Top 25 Query Details”
url: “/dashboards/2439?username={{ ‘abcd_efgh’ | url_encode }}”
}
link: {
label: “Top 25 Query Details1”
url: “/dashboards/2439?username={{ ‘abcdefgh’ | url_encode }}”
}
}
I am calling another dashboad d2 and passing username which is parameter for dashboard d2. The issue I am facing is that if the value of username that I am passing has _ character then d2 ignores it but if the value does not have _ then it uses it. so the first link above does not work but the second link works.
Thanks