Concatenate is what will bring your two fields together. Using Javascript on the "Calculate" event of the fullnamefield use the following code:if (firstnamefield.rawValue != null && lastnamefield.rawValue != null) {this.rawValue = firstnamefield.rawValue + " " + lastnamefield.rawValue;}This code abo...