Avatar

Level 10

The \n is a new line character in javascript so you could use something like this:

ResultField.rawValue = Field1.rawVlue + "\n" + Field2.rawValue + "\n" + Field3.rawValue

This wil put the value of each the 3 fields on a separate line in ResultField (assuming that ResultField is set as a multiline field).

Paul