Setting the value of computed when composed field

I have one computed when composed field that will allow multiple values also.I have to set this field from the front end.Can you please help me out how we can set the value of a computed when composed field.

Subject: setting the value of computed when composed field

Just set it like any other field, e.g.

FIELD MyField := “Value one” : “Value two” : “Value three”;

Call NotesDocument.ReplaceItemValue(“MyField”, arrayOfValues)

As long as you use only @Formulas and back-end methods, there’s nothing special about computed when composed fields.

Subject: RE: setting the value of computed when composed field

I think from frontend, you won’t able to change the value.

create an agent, and update value.

Subject: RE: setting the value of computed when composed field

Did you try it prior to posting?

The document must be in edit mode or selected in a view for the Formula to work. That’s all.