Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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))