- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2016 01:42 PM
Would it be possible to simply create a business rule that takes the values from 3 other fields, concatenate them and separated by commas and space, and store the result in the 4th field? Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2016 02:09 PM
Sure, are they string fields?
Just do a business rule that in the script sets
current.u_field_four = current.u_field_one + ', ' + current.u_field_two + ', ' current.u_field_three;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2016 02:09 PM
Sure, are they string fields?
Just do a business rule that in the script sets
current.u_field_four = current.u_field_one + ', ' + current.u_field_two + ', ' current.u_field_three;
