- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
You would place the script in the calculate event of the third field.
This should get you close (you will need to change the object references to suit the names of your objects):
I will use JavaScript:
if (lastName.rawValue !== null && firstName.rawValue !== null) {
this.rawValue = lastName.rawValue + ", " + firstName.rawValue.toString().slice(0,1);
}
You may not need the .toString() bit, but give it a try.
Niall
Views
Replies
0 Likes
Total Likes