Hi, can we give additional drop down value to existing field. Suppose i have field that is captured as value "Yes". Now i want to give an option of "No" there itself so that we can select "No" if we dont want "Yes" . I do not wan to give any checkmark group option for drop down menu. I want it be populated in the existing field itself.
TO GIVE DROP DOWN ADDITIONAL VALUE TO ALREADY CAPTURED FIELD
Was this article helpful?
0 out of 0 found this helpful
Comments
3 comments
Hi Samir,
Hope all is well.
Maybe you can try this. Create a text field and try this script in a rules script. What it will do is suggest values and creates a dropdown with the suggested values
Context.Suggest("Yes");
Context.Suggest("No");
Let me know if you can't get it to work and we will take a look together.
Hi collins, it works if we create another field and that can also be achieved by creating checkmark. But can we give dropdown to existing captured field?. Suppose a field has particular value say "ABC" AS 1, which is captured by some means or may be assigned. Can we give optional values such as 2,3,4 and 5 like this if we don't want value "1"?
Hello,
Yes, you can use Suggest function.
Please sign in to leave a comment.