Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm trying to implement a Button with few Actions.
In Button --> Actions --> Select Values in a field,
Field Name: Target
Field value : =5 is working.
But when I mention >5 ,this is not working.
I need a button action which triggers values of Target greater than 5. Someone please help
Use this for your field value:
=concat({<Target={">5"}>}distinct Target, ';')
The "Select values in a field" option expects a semi-colon separated list, hence the concat().
Thanq so much Nicole. I tried it, its working.