LineBreak() is not working with FormulaMap(). Neither Char(10) and Character(10) are.
It used to work before. Is it a bug?
list(1,2,3).FormulaMap(Concatenate(CurrentValue,linebreak())) returns 1, 2, 3 with no line break.
The only way I get it to work is this way:
list(1,2,3).FormulaMap(Concatenate(CurrentValue)).Join(LineBreak())