Hi, I'd like to realize a SIL script that writes several Values from different Custom fields in a new custom field.
I have a text field and a cascading field. From there should be generated a new text in a new custom field.
It should look like:
Cascading field: Option1 , Option 2
Textfield:
Value from Cascading field Option 1_Value from text field_Value cascading field Option 2
Thanks
Hello @Franziska Remmele
You script would look like this:
#{text_field2} = "Cascading field: " + replace(#{cascading_list}, "|", ",") + "\nTextfield: " + #{text_field};
Please change text_field2, cascading_list, text_field with the names of your custom fields.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are most welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.