Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
Just write in the action textbox:
If(project='', 'a', '')
let me know
where to write it?
i did it with - select in field
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