Item value

We have a shared field with multiple value option select.

We are calculating the lookup in shared field by Lotus script.Problem is, when we are seeing from the front end every thing is fine.But when we are looking by field property then by formula it is coming as “abc”"123"“WER” by formula.But by lotus script it is displaying “abc;123;WER” as field properties.

In front end both are same abc;123;WER.

Any help

Subject: item value

Neither Formula Language nor LotusScript will show you the field properties. Formula Language only gives you one way to look at an item (the back-end value), while LotusScript will let you look at either the back-end value (NotesDocument.GetItemValue or Item.Values) or the UI field content (NotesUIDocument.FieldGetText). FieldGetText tells you nothing about what the NotesItem contains; it just tells you what has been typed into the UI field widget. UI field values are never multi-valued – a semicolon, comma, space or new line is just another character in the string as far as FieldGetText is concerned.

Subject: item value

Any problem here? Display…?

Subject: RE: item value

There is not Problem in Display …Only problem in the value store in item value.