Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
rcandeo
Creator III
Creator III

how to make this trigger

Hi, I have a box that I put a trigger and when the user clik on it, will call a new tab.

The problem is that I wanna put in this trigger a date selection and I am not getting doing it.

Please which is the correct syntax?

I neee some like this:

>=$(vDateBegin) and <=$(vDateEnd)

1 Solution

Accepted Solutions
Not applicable

Please try this:

='>=' &date(vDateBegin)& '<=' & date(vDateEnd)

View solution in original post

3 Replies
Not applicable

Please try this:

='>=' &date(vDateBegin)& '<=' & date(vDateEnd)

mdmukramali
Specialist III
Specialist III

Dear,

can you try the below syntax.

='>=' & Date(vDateBegin, 'M/D/YYYY') & '<=' & Date(vDateEnd, 'M/D/YYYY')

Thanks,

Mukram.

rcandeo
Creator III
Creator III
Author

thank you very much