Hi
need help on below issue, I’m trying to pick the filters from one dashboard page and trying to pass those filters to another dashboard which i’m using Link parameters
I’m able to pass for string fields, but I’m not able to do it for Year as my Date dimension is created as below
dimension_group: actual_del {
type: time
timeframes: [
raw,
date,
week,
month,
quarter,
year
]
convert_tz: no
datatype: date
sql: ${TABLE}.actual_del_date ;;
}
=========================Below im using in measure part======================
when i use another column like string data type its working, but when i’m trying to use Year its not working may be bec of timeframes or dont know need support on this
measure: total_Measure {
type: sum
sql: ${Revenue} ;;
link: {
label: "Total Revenue"
"https://xxxxxx.cloud.looker.com/dashboards/675?Year={{_filters['actual_del_date '] | url_encode }}"
}
}
alrternately i used filters in the url by giving below as well but not worked at all
1.) Year={{_filters['actual_del .year'] | url_encode }}
2.) Year={{_filters['actual_del_date .year'] | url_encode }}
Pleas help how to achive.
Best answer by dbrinegar
View original