You want to create a derived field that concatenates the name and description of a node to display "Name-Description."
Select the two valid syntax types for a derived property using a formula.
Concat(Abbrev,"-",Descr)
Concat(Abbrev(), -,Descr())
Concat(PropValue(Core.Abbrev)| - | PropValue(Core. Descr))
Concat(PropValue(Core.Abbrev),-,PropValue(Core.Descr))
Concat() Abbrev, -, Descr
ConcatO Abbrev," -", Descr
Submit