Discussion Board for collaboration related to QlikView App Development.
Hi to all,
I am looking for a way to make Automatic selection from first day of the current year until yesterday , every time when the model is opening
thanks a head for the help
You can add a document trigger for this. Document Properties>> Triggers >> onOpen >> Add Actions >> Select in Field
Give your field name and below expression in the search string
='>=' & YearStart(today()) & '<=' & date(today()-1)
Add a Select in Field action to the OnOpen document trigger on the Triggers tab of the Document Properties window. The search string you need is something like: ='>=' & YearStart(Today()) & '<=' & Today()-1
You can add a document trigger for this. Document Properties>> Triggers >> onOpen >> Add Actions >> Select in Field
Give your field name and below expression in the search string
='>=' & YearStart(today()) & '<=' & date(today()-1)
thanks to all