Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
rdsuperlike
Creator
Creator

Triggers on open

I have set the field to CY2015-Q1 so that I can see it selected on opening the document.

I want it to select itself on it's own at every quarter. eg:- It should change to CY2015-Q2 when the date today is 4/1/2015.

Can I use today() here? any input is appreciated.

1 Solution

Accepted Solutions
Anonymous
Not applicable

I'd rather use ReloadTime() than today(), especially if reload is not every day.  Search String will be:

='CY' & year(ReloadTime()) & ' - Q' & ceil(month(ReloadTime())/3)

View solution in original post

1 Reply
Anonymous
Not applicable

I'd rather use ReloadTime() than today(), especially if reload is not every day.  Search String will be:

='CY' & year(ReloadTime()) & ' - Q' & ceil(month(ReloadTime())/3)