Showing more than 9 rows in views

Hi,

I have searched the forum to look for a solution to showing more than 9 values from a multivalue field in a single row of a view

I like the idea of just showing 8 values and then <more…> but I am struggling on how to write the formula for the column to do this - I’m sure it is simple

Can anyone help?

Thanks

Subject: 9 is the maximum number of lines in a row. No workaround in a view.

Subject: Showing more than 9 rows in views

Here’s your formula to display a message in the 9th row if there are more then 9 values.

values := compute your list of values here…

overflow := “<There are more than 9 values for this row.>”

@If(@Elements(values)<=9; values; @Subset( values ; 8 ) : Overflow )

Subject: Re:Showing more than 9 rows in views - solved

Hi,

Thanks Graham - I knew it would be easy

I used the formula

@If(@Elements(TotEWCCodeShort)>9;@Subset(TotEWCCodeShort;8):“<more…>”;TotEWCCodeShort)

where TotEWCCodeShort is my list field computed on the document

Cheers