0
tick any choice on a multiple-choice field with a trigger
I'm trying to make a pre-determinated combenation of choice already ticked by selecting from another field.
The syntax could be similar to the following:
---------
if the choice of the field A(single choice) is 1 then tick 1,5,7,8 in the field B(multiple-choice) else if the choice of the field A(single choice) is 2 then tick 4,2,3,6,10 in the field B(multiple-choice)end
-----------------
I already tryed to find the number corresponding to determinated combenation, but that are not unique (number(multiple-choice)).
Someone have an idea on how to make it?
1 reply
-
You can put this in "Trigger after update"...
if 'field A' = 1 then
'field B' := [1, 5, 7, 8]
else
'field B' := [4, 2, 3, 6, 10]
end
Content aside
- 5 yrs agoLast active
- 1Replies
- 1577Views