Web view links appearing twice

I’ve a webbview column witht the following formula:“[<a CLASS="GeneralUTextCursor" onmouseover="className=‘GeneralUTextCursorHover’" onmouseout="className=‘GeneralUTextCursor’" TITLE="” +" " href="" + @ViewTitle + “/” + @Text(@DocumentUniqueID) + “?OpenDocument">]” + @Name([O]; IssuedTo) + “[]”

The problem is that the links appears twice, rather than just once.

e.g.

Mylink Mylink

When I viewed the view in Notes, I can see that the dat in the column is appearing twice as well. Any ideas?

Subject: Most likely is that the field IssuedTo contains multiple values…

Try:
UniqIT := @Trim(@Unique(@Name([O]; IssuedTo)));
“a CLASS="GeneralUTextCursor"
onmouseover="className=‘GeneralUTextCursorHover’"
onmouseout="className=‘GeneralUTextCursor’" TITLE="” +" " href="" +
@ViewTitle + “/” + @Text(@DocumentUniqueID) + “?OpenDocument">]” + UniqIT +
“/A>]”

Subject: Web view links appearing twice…

In this concatenation you’ll find that you must be referencing a field which has more than one value, it might even be a blank value. It’s showing double most probably because of a field, I’m convinced, check it. It might also be that you are using a view to display the link and there’s some categorized column acting up, but probably not.

Vasvat