Multiple lines in view

Hi.I wanted to get multiple lines in a view with data from differnt fields. I used the tip that is given in the designer help. See below.

My column-formula looks like this:

“Q” : FieldA : “A” : FieldB

The problem is that if the text in FieldA is longer then one row in the view only one row will show up.

FieldB works OK, it can be more then one row and everything shows up in the view.

Anyone that have discovered a work-around to get this to work?

TIA

/Jocke

Tip To add multiple lines to a single column row:

  1. In the View Properties box:

Change the Lines per row to the number of carriage returns you want to include in the row.

Select Shrink rows to content.

  1. In the Column Properties box:

Choose New Line as the Multi-value separator.

Deselect the Show multiple values as separate entries check box.

  1. In the code for the column formula, specify each string or number that you want to display on a new line as a separate value. Since you set the Multi-value separator to New Line, this inserts a carriage return between each value. For example, the following column formula vertically lists the content of the FirstName field above the content of the LastName field in the column row:

first:= FirstName;

last := LastName;

@Trim(first : last)