Answered
I have a field I'm naming TEXT1 which I want to populate with a concatenate of two values, GLOBAL_USER_FIRST_NAME and GLOBAL_USER_LAST_NAME. I am so new at this and stumbling around. If I name the Field "GLOBAL_USER_FIRST_NAME" it will populate with the User's first name, likewise for the last name. My goal is to have one field that will combine them both so it won't look so jacked up spacing-wise. I've tried using the Calculate/Custom calculation script section in the Text Field Properties and just keep striking out. I'm sure it's probably something simple, but I can't figure it out. Can anyone help me????
// Custom Calculate script for TEXT1
event.value = getField("GLOBAL_USER_FIRST_NAME").valueAsString + " " + getField("GLOBAL_USER_LAST_NAME").valueAsString;
This could be refined to suppress the space if either of the input fields are blank, but this should get you started.