Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
adiarnon
Creator III
Creator III

Actions


hi,

i have a text box.

1)i want that on the first click - selection in field project='a'

2)and in the second click it will delete the selection of project 'a'

and than again 1)

the first click  working but i dont know how to do the second click...

help please.

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Here it is:

In the button go in action tab, select add and choose "select in field"

Now in the upper textbox write your field name without =, ' or other charachters, just the name

In the bottom textbox write this:

=if(GetSelectedCount(project)>0, '', 'MyValue') where project is the name of your field and MuValue is the value ypu want to set

Let me know

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Just write in the action textbox:

If(project='', 'a', '')

let me know

adiarnon
Creator III
Creator III
Author

where to write it?

i did it with  - select in field

alexandros17
Partner - Champion III
Partner - Champion III

Here it is:

In the button go in action tab, select add and choose "select in field"

Now in the upper textbox write your field name without =, ' or other charachters, just the name

In the bottom textbox write this:

=if(GetSelectedCount(project)>0, '', 'MyValue') where project is the name of your field and MuValue is the value ypu want to set

Let me know