- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Sure you can merge fields. Let's say you're merging field1, field2 and field3 into field4. In the validate event of field4, try this script:
if (this.rawValue == null){
this.rawValue = field1.rawValue + " " + field2.rawValue + " " + field3.rawValue;
}
This will concatenate the other fields into 1, with spaces between the values. You need the test for null to keep the field from changing the value back if the user alters the value.
Views
Replies
0 Likes
Total Likes