Combine Field Values

Most fields in Fulcrum will create a string from the data entered into the field. In those cases the CONCATENATE() or the CONCAT() expression can be used to combine field values.

This can be useful when you want to customize or use more than five fields for the title.

var concatenated = CONCAT($date_field, ", ", $text_field, "-", $numeric_field, ": ", 
                          "Version ", CHOICEVALUE($choice_field), "check");

SETRESULT(concatenated);

// Example Outcome: 2021/01/01 Damage-1: Version I-495 check