Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
ajithsachin
Partner - Contributor II
Partner - Contributor II

If Field Value Count exceeds 3 then need to clear the filed value

Hi All,

     I want to set a trigger like suppose i have a month and year selection and if somebody select more than three months then the filed should get clear.

     Can anybody help me to do this.

Regards,

Ajith

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Go to Settings

Document Properties

Field Event Triggers

Select Month

On Select

Add Action(s)

Add

Selection -- Select in Field

Field

Month

Search String

=IF(GetSelectedCount(Month)<=3,'('&Concat(Month,'|')&')')

Hope this helps

View solution in original post

2 Replies
sushil353
Master II
Master II

Hi,

You can define field event trigger..

Settings>document properties>trigger>field event trigger

in action you can define clear all with condition as below.

getslectedcount(fieldname)>3

HTH

Sushil

MK_QSL
MVP
MVP

Go to Settings

Document Properties

Field Event Triggers

Select Month

On Select

Add Action(s)

Add

Selection -- Select in Field

Field

Month

Search String

=IF(GetSelectedCount(Month)<=3,'('&Concat(Month,'|')&')')

Hope this helps