Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can anyone help me to implement one trigger on below scenario?

Hi All,

I have one field as Country with below field values

Country

All

India

uk

hongkong

china

brazil

Now i want to implement trigger on field value " All " to "select all" the field values in country field?

So that i can view the complete data related all countries.

Thanks in advance!

Raju

13 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You will need double quotes around the values. Try:

=if(SubStringCount(GetFieldSelections(Country),'All')>0

,'*'

,'("' & GetFieldSelections(Country, '"|"') & '")' 

)

-Rob

Not applicable
Author

Rob, Its working! Thanks a ton!

Raju

pratap6699
Creator
Creator

very nice post sir,,,i have same requirement like this,,,,that is now we are select 'All' fieldvalue in country field then all fieldvalues will be selected right,,,now my requirment is when you select 'ALL' all selections will be clear like 'clearall button' is it possible...

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Just select a value that isn't there. That should clear the field.

-Rob