Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic title (with parameters) #4984

Closed
chou666 opened this issue Jun 19, 2020 · 2 comments
Closed

Dynamic title (with parameters) #4984

chou666 opened this issue Jun 19, 2020 · 2 comments

Comments

@chou666
Copy link

chou666 commented Jun 19, 2020

I get data from google analytics in a query: this is functional, but date is not formatted as expected to be displayed in X axis.

So I need to process it in another query:

select 
SUBSTR(ga_yearMonth, 0, 5) as year,
SUBSTR(ga_yearMonth, 5, 2) as month,
SUBSTR(ga_yearMonth, 0, 5) || "-" || SUBSTR(ga_yearMonth, 5, 2) || "-01" as label,
`{{ field }}` as value
from `query_{{ query }}`

This is functional. I have many stat to produce, so I use parameters and this is functional. GREAT

But, to finish, I want a dynamic title for my query. I try to use parameter in title but it seems to be not implemented, doesn't it ?

Let me known if I am not clear

@kravets-levko
Copy link
Collaborator

Duplicate of #4383

@kravets-levko kravets-levko marked this as a duplicate of #4383 Jun 19, 2020
@chou666
Copy link
Author

chou666 commented Jun 19, 2020

Thanks for the link to the ticket #4383

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants