Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
soniasweety
Master
Master

defaut filter on selection max month

Hi All,

@Vegar , @sunny_talwar 

 i have attached sample   based on each region selection that perticular  max month should be selected.

 

AMS  201607

APJ  201707

EMEA  201707

 

whenever use select in region filed   that perticular region max month should selected .

 

 

 

 

Labels (2)
7 Replies
anat
Master
Master

we can apply Field Event Trigger to implement this scenario.

 

Settings...>Triggers....>Field Event Triggers

under this select "REGION" field and apply "On select " action

Select in Field

Field Name:New

search String:=max(New)

 

Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

On Settings > Document Properties > Triggers > Field Event Triggers > OnSelect >Add Action >max([Date Field]).

Refer qvw attached for reference.

 

Thanks and regards,

Arthur Fong

sugathirajkumar
Creator
Creator

Take this as Date in list box =if(GetFieldSelections(Field)='AMS',(aggr(max(Date),Field)), if(GetFieldSelections(Field)='APJ',(aggr(max(Date),Field)), if(GetFieldSelections(Field)='EMEA',(aggr(max(Date),Field)),Date))) Fiel in another list box
sugathirajkumar
Creator
Creator

clipboard_image_0.png

soniasweety
Master
Master
Author

if i use this condition  i can see only one month in the field.  but i want t see all the  months and  max month to be selected.

Brett_Bleess
Former Employee
Former Employee

Just going to put a comment on this to move it back up to the top to see if anyone else has any ideas since you did post your QVW...

Regards,
Brett

To help users find verified answers, please do not forget to use the "Accept as Solution" button on any post(s) that helped you resolve your problem or question.
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.
Frank_Hartmann
Master II
Master II

see attached qvw

hope this helps