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: 
Not applicable

Trigger not working

Hello All,

I have a field named Plan_Week. I always want this to be selected as the lastest field in the filter. I have used Select in field trigger. I select the field as Plan_Week. Now when i try to enter manually the lastest week 2011W22 without quotes in the search string field, it works. when i try the formula maxstring(Plan_Week) in the search string, it does not work. It also does not work if i put quotes '' around 2011W22 like '2011W22'.

Can some one help how can i use the maxstring formula in the search string field for the select in field trigger

Arif

1 Reply
spividori
Specialist
Specialist

Hi.

In my case to arrive at a sheet, I have to select the maximum date.
For this use the following trigger:

DiasCrono is the name of the field where the dates are hosted.


sub MaxFechaCrono

ActiveDocument.Fields("DiasCrono").Clear

set f = ActiveDocument.GetField ("DiasCrono")

f.TopSelect "Max(DiasCrono)",1

end sub

Hope this help.

Otherwise you could upload your trigger to help you?


Regards.