Help an Admin with Development please!

I have a column in a view in the Domino Directory and I’ve used @Name([Abbreviate]; FullName) which returns almost what I want. I get every entry in the “User name” field.

Joe User/OU/OU/OU/My Company

Joe User

Joe User/Old OU/OU/OU/My Company

The column displays Joe User/OU/OU/OU/My Company, Joe User, Joe User/Old OU/OU/OU/My Company

What I want is just the top entry

is there a way to “trim” this down?

Thanks in advance!

Fred

Subject: @Subset

The Fullname is a list (multivalue) field.

See the Designer help file, “@Subset”.

You need something like: @Name([abbreviate]; @Subset(Fullname; 1))

Subject: Or treat the field as an array

Or even treat FullName as the array it is. @Name([abbreviate]; Fullname[1]) ← Arrays in formula are 1 based rather than 0 (zero) based as they are in Lotusscript