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: 
vengadeshpalani
Creator
Creator

IS it possible clear the variable when clear the particular field

Hi,

if I CLR the particular field using current selection box means I  want to set variable using trigger option

Ex:

variable A

in variable A don't use any expression like(if (getselectioncount(fieldname)=0,'Clr',min(Date))) and want to set value based on action (using trigger option)

1 Solution

Accepted Solutions
sunny_talwar

May be use Field Event Trigger (May be On Change Trigger)

Set variable like this

If(GetSelectedCount(FieldName) > 0, Min(Date))

View solution in original post

1 Reply
sunny_talwar

May be use Field Event Trigger (May be On Change Trigger)

Set variable like this

If(GetSelectedCount(FieldName) > 0, Min(Date))